sinh method

MathComplex sinh()

Implementation

MathComplex sinh(){
	if( _im == 0.0 ){
		return floatToComplex( fsinh( _re ) );
	}
	return MathComplex(
		fsinh( _re ) * ClipMath.cos( _im ),
		fcosh( _re ) * ClipMath.sin( _im )
		);
}