This arithmetic predicate calculates the hyperbolic sinus of the argument. This predicate is not defined in the ISO Prolog standard.
see also: acos/1 asin/1 atan/1 arithmetic in Prolog cos/1 cosh/1 is/2 sin/1 tan/1 tanh/1
| Examples | |
| X is sinh(2.71). | succeeds, X is 7.481369 |
| X is sinh(-0.1). | succeeds, X is -0.1001668 |
| Exceptions | |
| The floating point argument or result exceeds the floating point range | an evaluation_error(float_overflow) exception is thrown |
| The integer argument result exceeds the integer range | an evaluation_error(int_overflow) exception is thrown |