fcosh static method

double fcosh(
  1. double x
)

Implementation

static double fcosh( double x ){
	double t = ClipMath.exp( x );
	return (t + 1.0 / t) / 2.0;
}