[][src]Trait mathru::algebra::linear::matrix::Solve

pub trait Solve<T> {
    pub fn solve(&self, rhs: &T) -> Result<T, ()>;
}

Required methods

pub fn solve(&self, rhs: &T) -> Result<T, ()>[src]

A * x = b

Loading content...

Implementors

impl<T> Solve<Matrix<T>> for Matrix<T> where
    T: Field + Scalar
[src]

impl<T> Solve<Matrix<T>> for LUDec<T> where
    T: Field + Scalar
[src]

impl<T> Solve<Vector<T>> for Matrix<T> where
    T: Field + Scalar
[src]

pub fn solve(&self, rhs: &Vector<T>) -> Result<Vector<T>, ()>[src]

Solves Ax = y where A \in R^{m * n}, x \in R^n, y \in R^m

impl<T> Solve<Vector<T>> for LUDec<T> where
    T: Field + Scalar
[src]

pub fn solve(&self, rhs: &Vector<T>) -> Result<Vector<T>, ()>[src]

Solves Ax = y where A \in R^{m * n}, x \in R^n, y \in R^m

Loading content...