Skip to content

Math.Sinh

Name Mandatory Description Default Type
⬅️ Input The input float or sequence of floats to calculate the hyperbolic sine of. FloatFloat2Float3Float4Color[Any]
Output ➡️ Outputs the hyperbolic sine of the input. FloatFloat2Float3Float4Color[Any]

This shard calculates the hyperbolic sine of the given input, where the input is the real number. The hyperbolic sine is a hyperbolic function that is analogous to the circular sine function, but it uses exponential functions instead of angles.

Details

Sinh is not a periodic function. It does not repeat its values.

Sinh is unbounded and can grow to infinity as the input value grows.

If a sequence of floats was provided as input, the shard will calculate the hyperbolic sine of each element in the sequence and output a sequence.

If a sequence of vectors was provided as input, the shard will calculate the hyperbolic sine of each component in each vector in the sequence and output a sequence of vectors where each component in each vector is the hyperbolic sine of the corresponding component in the input sequence.

Examples

1
2
3
4
5
@f3(-1.0 0.0 1.0)
Math.Sinh | Log

Math.Subtract(@f3(-1.1752012 0.0 1.1752012)) | Math.Abs
Log