acosh method

MathComplex acosh()

Implementation

MathComplex acosh(){
	if( _im == 0.0 ){
		if( _re < 1.0 ){
			if( ClipMath.complexIsReal() ){
				ClipMath.setComplexError();
				return floatToComplex( facosh( _re ) );
			}
		} else {
			return floatToComplex( facosh( _re ) );
		}
	}
	// log( this + sqrt( sqr() - 1.0 ) )
	return add( sqr().sub( 1.0 ).sqrt() ).log();
}