Type Alias VecMatrix

Source
pub type VecMatrix = Vec<Vec<f32>>;

Aliased Type§

pub struct VecMatrix { /* private fields */ }

Trait Implementations§

Source§

impl<const R: usize, const C: usize> From<&Matrix<R, C>> for VecMatrix
where Zero<R>: Failed, Zero<C>: Failed,

Source§

fn from(val: &Matrix<R, C>) -> Self

Converts to this type from the input type.