sinh
Syntax
sinh(X)
Details
The hyperbolic sine function.
Note:
-
DolphinDB
sinhfunction accepts only one argument and supports calculations on scalars, vectors, and matrices. -
NumPy
sinhfunction is a generalized ufunc that supports N-dimensional arrays of any shape. You can control the output and apply conditional computation through parameters such as out and where. -
TA-Lib
SINHis a mathematical transformation function designed to process one-dimensional price series or arrays.
Parameters
X is a scalar/vector/matrix.
Returns
A DOUBLE scalar, vector, or matrix.
Examples
sinh 1 2 3;
// output: [1.175201,3.62686,10.017875]
