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