pub struct TwoSidedID<A: Scalar> {
    pub c: Array2<A>,
    pub x: Array2<A>,
    pub r: Array2<A>,
    pub row_ind: Array1<usize>,
    pub col_ind: Array1<usize>,
}
Expand description

Store a two sided interpolative decomposition

Fields

c: Array2<A>

The C matrix of the two sided interpolative decomposition

x: Array2<A>

The X matrix of the two sided interpolative decomposition

r: Array2<A>

The R matrix of the two sided interpolative decomposition

row_ind: Array1<usize>

The row index vector

col_ind: Array1<usize>

The column index vector

Trait Implementations

Return the C matrix

Return the X matrix

Return the R matrix

Return the column index vector

Return the row index vector

Return a two sided interpolative decomposition from the component matrices X, R, C, and the column and row index vectors Read more

Number of rows of the underlying operator

Number of columns of the underlying operator

Rank of the two sided interpolative decomposition

Convert to a matrix

Return the C matrix

Return the X matrix

Return the R matrix

Return the column index vector

Return the row index vector

Return a two sided interpolative decomposition from the component matrices X, R, C, and the column and row index vectors Read more

Number of rows of the underlying operator

Number of columns of the underlying operator

Rank of the two sided interpolative decomposition

Convert to a matrix

Return the C matrix

Return the X matrix

Return the R matrix

Return the column index vector

Return the row index vector

Return a two sided interpolative decomposition from the component matrices X, R, C, and the column and row index vectors Read more

Number of rows of the underlying operator

Number of columns of the underlying operator

Rank of the two sided interpolative decomposition

Convert to a matrix

Return the C matrix

Return the X matrix

Return the R matrix

Return the column index vector

Return the row index vector

Return a two sided interpolative decomposition from the component matrices X, R, C, and the column and row index vectors Read more

Number of rows of the underlying operator

Number of columns of the underlying operator

Rank of the two sided interpolative decomposition

Convert to a matrix

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.