pub fn sinh_vec(x: &[f64]) -> Vec<f64>
Expand description
§sinh_vec(x)
Hyperbolic Function
The sinh_vec
function calculates the hyperbolic sine value of each angle represented as a radian in the input iterator,
constructing a new vector from these results.
§Examples
use mathlab::math::sinh_vec;
assert_eq!(sinh_vec(&[0.0, 0.523598775598299, 3.141592653589793]), [0.0, 0.547853473888040, 11.548739357257748]);
End Fun Doc