GNU Octave  4.2.1
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
xacosh.f
Go to the documentation of this file.
1  subroutine xacosh (x, result)
2  external acosh
3  real x, result, acosh
4  result = acosh(x)
5  return
6  end
subroutine xacosh(x, result)
Definition: xacosh.f:1
function acosh(X)
Definition: acosh.f:2