Type Alias ViewPair

Source
pub type ViewPair<'a, T> = VerticalPair<RowMajorMatrixView<'a, T>, RowMajorMatrixView<'a, T>>;

Aliased Type§

pub struct ViewPair<'a, T> {
    pub top: DenseMatrix<T, &'a [T]>,
    pub bottom: DenseMatrix<T, &'a [T]>,
}

Fields§

§top: DenseMatrix<T, &'a [T]>

The top matrix in the vertical composition.

§bottom: DenseMatrix<T, &'a [T]>

The bottom matrix in the vertical composition.