Calculating tanh-1

Hello,

does anyone know how we could calculate tanh-1 in IGOR? Is there any command for that?

I want to calculate the angle of a given tanh.

Thank you in advance
Thank you for the reply.

This gives me values from 2 to -2. I use wind direction values, thus values from 0 to 360, so this is not a reasonable result.
I'm confused now.
Can you provide more explanation of what you need here please?
Actually, I try to separate the wind direction into its two basic components. The nort-south and the east-west. Anyway, I want, if I know the tan(φ), to find the angle φ. Unfortunatelly, I can't take right results using atanh.
I am sorry, I still don't understand.
Perhaps someone else can help?
This gives me back values between -3 and 3, but this is not angle values again.
steeve88 wrote:
This gives me back values between -3 and 3, but this is not angle values again.

That will be -pi to pi.
Try scaling the result by 180/pi.
Make sure you read the documentation of the commands, e.g. execute the following from the command line:

DisplayHelpTopic "atan"
DisplayHelpTopic "atan2"

this says e.g. for atan2 that the input is expected to be in radians and the output values range from -pi to +pi.
Thank you very much. That was the problem. Sometimes the solution is in front of our eyes but we can't see it.

I converted degrees to radians before the calculations, and finally I converted the result of arctan again into degrees.