Trait beagle::scalar_array::ScalarArray [] [src]

pub trait ScalarArray where
    <Self::Row as HasSmaller>::Smaller: Array<Self::Scalar>,
    <Self::Dim as HasSmaller>::Smaller: Array<<Self::Row as Array<Self::Scalar>>::Type>, 
{ type Scalar; type Row: Dim<Self::Scalar>; type Dim: TwoDim<Self::Scalar, Self::Row>; }

Types that represent a 2d array of scalars (a matrix or a vector).

Associated Types

The type of the underlying scalar in the array.

The type of a single element of this type (a single row for matrices/a scalar for vectors).

The dimension of the scalar array.

Implementors