Struct opensrdk_linear_algebra::matrix::sp::SparseMatrix [−][src]
pub struct SparseMatrix<T = f64> where
T: Number, {
pub rows: usize,
pub cols: usize,
pub elems: HashMap<(usize, usize), T>,
// some fields omitted
}Fields
rows: usizecols: usizeelems: HashMap<(usize, usize), T>Implementations
Trait Implementations
Returns the “default value” for a type. Read more
type Output = SparseMatrix<T>
type Output = SparseMatrix<T>
The resulting type after applying the * operator.
Performs the * operation. Read more
type Output = SparseMatrix<T>
type Output = SparseMatrix<T>
The resulting type after applying the * operator.
Performs the * operation. Read more
type Output = SparseMatrix<T>
type Output = SparseMatrix<T>
The resulting type after applying the * operator.
Performs the * operation. Read more
type Output = SparseMatrix<T>
type Output = SparseMatrix<T>
The resulting type after applying the * operator.
Performs the * operation. Read more
Auto Trait Implementations
impl<T> RefUnwindSafe for SparseMatrix<T> where
T: RefUnwindSafe,
impl<T> Send for SparseMatrix<T>
impl<T> Sync for SparseMatrix<T>
impl<T> Unpin for SparseMatrix<T> where
T: Unpin,
impl<T> UnwindSafe for SparseMatrix<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more