Type Alias Matrix

Source
pub type Matrix<E: TensorElement, D, const N: usize, const M: usize> = Tensor<E, D, 1, N, M>;

Aliased Type§

struct Matrix<E: TensorElement, D, const N: usize, const M: usize> {
    pub data: [E; { _ }],
    pub _phantom: PhantomData<D>,
}

Fields§

§data: [E; { _ }]§_phantom: PhantomData<D>