pub fn csch_deg_vec(x: &[f64]) -> Vec<f64>
Expand description
§csch_deg_vec(x)
Hyperbolic Function
The csch_deg_vec
function calculates the hyperbolic cosecant value of each angle represented as a degree in the input iterator,
constructing a new vector from these results.
§Examples
use mathlab::math::{csch_deg_vec, INF_F64 as inf};
assert_eq!(csch_deg_vec(&[0.0, 30.0, 180.0]), [inf, 1.825305574687954, 0.086589537530047]);
End Fun Doc