sinh
Hyperbolic sine function.
Syntax
sinh(expr)
Argument
- expr
 - A valid scalar, vector, or matrix expression in radians.
 
Example
| Templex Expression | Results | 
|---|---|
{sinh(PI/2)} | 
                                2.3013 | 
                            
{sinh( {0, 1, 2} * PI)}} | 
                                0, 11.5487, 267.745 | 
                            
{sinh( { {0, 1}, {1, 0} } )} | 
                                {0, 1.1752}, {1.1752, 0} | 
                            
| Curve Math Vectors | 
|---|
x = c1.x
  | 
                            
Comments
If expr is a scalar, the result is a scalar which is the hyperbolic sine of expr.
If expr is a vector, the result is a vector of the same dimensions containing a hyperbolic sine for each element of expr.
If expr is a matrix, the result is a matrix of the same dimensions containing a hyperbolic sine for each element of expr.