asinh method

MathComplex asinh()

Implementation

MathComplex asinh(){
	if( _im == 0.0 ){
		return floatToComplex( fasinh( _re ) );
	}
	// log( this + sqrt( sqr() + 1.0 ) )
	return add( sqr().add( 1.0 ).sqrt() ).log();
}