Math.Sinh(Value)
.Sinh() method returns the hyperbolic sine of a number.
Applies To
Description
Math.Sinh() method returns the hyperbolic sine of a number.
Properties and Methods
None
Available
The .Sinh(Value) method is available in:
- 15.03.016
- All newer builds
Type
Decimal
Syntax
Math.Sinh(Value);
Parameters
Parameter |
Required |
Description |
---|---|---|
Value |
Yes |
Any data that can be evaluated as a number. If the value cannot be evaluated as a number, then DEACOM will throw a scripting error. |
Example
Event.Form.MessageBox('Math.Sinh(0): ' + Math.Sinh(0) +
'\nMath.Sinh(1): ' + Math.Sinh(1) +
'\nMath.Sinh(-1): ' + Math.Sinh(-1) +
'\nMath.Sinh(Math.PI): ' + Math.Sinh(Math.PI));
/* Expected System Prompt Display:
Math.Sinh(0): 0
Math.Sinh(1): 1.1752011936438
Math.Sinh(-1): -1.1752011936438
Math.Sinh(Math.PI): 11.5487393572577
*/