ndarray-glm 0.0.9

Performs regression for generalized linear models using IRLS on data stored in arrays.
Documentation
1
2
3
4
5
6
7
//! numerical trait constraints
use ndarray_linalg::Lapack;

pub trait Float: Sized + num_traits::Float + Lapack {}

impl Float for f32 {}
impl Float for f64 {}