cosh_deg_vec

Function cosh_deg_vec 

Source
pub fn cosh_deg_vec(x: &[f64]) -> Vec<f64>
Expand description

§cosh_vec(x)

Hyperbolic Function

The cosh_deg_vec function calculates the hyperbolic cosine value of each angle represented as a degree in the input iterator, constructing a new vector from these results.

§Examples

use mathlab::math::cosh_deg_vec;
assert_eq!(cosh_deg_vec(&[0.0, 30.0, 180.0]), [1.0, 1.140238321076429, 11.591953275521519]);

End Fun Doc