Struct peroxide::structure::sparse::SPMatrix

source ·
pub struct SPMatrix {
    pub row: usize,
    pub col: usize,
    pub nnz: usize,
    pub col_ptr: Vec<usize>,
    pub row_ics: Vec<usize>,
    pub data: Vec<f64>,
}

Fields§

§row: usize§col: usize§nnz: usize§col_ptr: Vec<usize>§row_ics: Vec<usize>§data: Vec<f64>

Implementations§

source§

impl SPMatrix

source

pub fn new(row: usize, col: usize, nnz: usize) -> Self

source

pub fn from_dense(m: &Matrix) -> Self

source

pub fn to_dense(&self) -> Matrix

source

pub fn col_ptr(&self) -> &Vec<usize>

source

pub fn row_ics(&self) -> &Vec<usize>

source

pub fn data(&self) -> &Vec<f64>

source

pub fn transpose(&self) -> Self

source

pub fn t(&self) -> Self

Trait Implementations§

source§

impl Clone for SPMatrix

source§

fn clone(&self) -> SPMatrix

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SPMatrix

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Into<Matrix> for SPMatrix

source§

fn into(self) -> Matrix

Converts this type into the (usually inferred) input type.
source§

impl Into<SPMatrix> for Matrix

source§

fn into(self) -> SPMatrix

Converts this type into the (usually inferred) input type.
source§

impl LinearAlgebra for SPMatrix

Linear algebra for sparse matrix

Caution : In every ops in this trait, there is converting process to dense matrix

source§

fn back_subs(&self, _b: &Vec<f64>) -> Vec<f64>

source§

fn forward_subs(&self, _b: &Vec<f64>) -> Vec<f64>

source§

fn lu(&self) -> PQLU

source§

fn waz(&self, _d_form: Form) -> Option<WAZD>

source§

fn qr(&self) -> QR

source§

fn svd(&self) -> SVD

source§

fn rref(&self) -> Matrix

source§

fn det(&self) -> f64

source§

fn block(&self) -> (Matrix, Matrix, Matrix, Matrix)

source§

fn inv(&self) -> Matrix

source§

fn pseudo_inv(&self) -> Matrix

source§

fn solve(&self, _b: &Vec<f64>, _sk: SolveKind) -> Vec<f64>

source§

fn solve_mat(&self, _m: &Matrix, _sk: SolveKind) -> Matrix

source§

fn is_symmetric(&self) -> bool

source§

impl LinearOp<Vec<f64>, Vec<f64>> for SPMatrix

source§

fn apply(&self, rhs: &Vec<f64>) -> Vec<f64>

source§

impl<'a, 'b> Mul<&'b Vec<f64>> for &'a SPMatrix

Reference version of matrix multiplication with vector

§

type Output = Vec<f64>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &'b Vec<f64>) -> Self::Output

Performs the * operation. Read more
source§

impl Mul<Redox<Vec<f64>>> for &SPMatrix

§

type Output = Redox<Vec<f64>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Redox<Vec<f64>>) -> Self::Output

Performs the * operation. Read more
source§

impl Mul<Redox<Vec<f64>>> for SPMatrix

Matrix multiplication with Redox

§

type Output = Redox<Vec<f64>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Redox<Vec<f64>>) -> Self::Output

Performs the * operation. Read more
source§

impl Mul<Vec<f64>> for SPMatrix

Matrix multiplication with vector

§

type Output = Vec<f64>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Vec<f64>) -> Self::Output

Performs the * operation. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V