Clicky
Showing changes from revision #4 to #5:
(追記) Added (追記ここまで) | (削除) Removed (削除ここまで) | (削除) Chan (削除ここまで)(追記) ged (追記ここまで)
atanh(x)
computes the inverse hyperbolic tangent of x
.
Fortran 2008 and later
result = atanh(x)
x
- The type shall be real
or complex
.The return value has same type and kind as x
. If x
is complex, the imaginary part of the result is in radians and lies between (削除) (追記) (追記ここまで).-\\pi/2 \\leq \\mathop{Im}{\\atanh(x)} \\leq \\pi/2
(削除ここまで)
program test_atanh
real, dimension(3) :: x = (/ -1.0, 0.0, 1.0 /)
write (*,*) atanh(x)
end program
Inverse function: tanh