pub fn acosh_deg_vec(x: &[f64]) -> Vec<f64>
Expand description
§acosh_deg_vec(x)
Inverse Hyperbolic Function
The acosh_deg_vec
function calculates the inverse hyperbolic cosine value of each element in the input vector, represented as a degree
.
The result is a new vector containing the arccosh
values, which are the angles that correspond to the input values.
§Examples
use mathlab::math::acosh_deg_vec;
assert_eq!(acosh_deg_vec(&[1.0, 1.140238321076429, 11.591953275521519]), [0.0, 30.0, 180.0]);
End Fun Doc