GNU Octave  3.8.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
xatanh.f
Go to the documentation of this file.
1  subroutine xatanh (x, result)
2  external atanh
3  real x, result, atanh
4  result = atanh(x)
5  return
6  end