pub fn hermite_zeros<N: ComplexField + FromPrimitive + Copy>(
    n: u32,
    tol: N::RealField,
    poly_tol: N::RealField,
    n_max: usize
) -> Result<Vec<N>, String>where
    <N as ComplexField>::RealField: FromPrimitive + Copy,
Expand description

Get the zeros of the nth Hermite polynomial within tolerance tol with polynomial tolerance poly_tol

Errors

Returns an error if poly_tol or tol are invalid.

Panics

Panics if a u32 or f32 can not be converted into the generic type.