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

pub trait Substitute<T> {
    pub fn substitute_forward(&self, b: T) -> T;
pub fn substitute_backward(&self, b: T) -> T; }

Required methods

pub fn substitute_forward(&self, b: T) -> T[src]

pub fn substitute_backward(&self, b: T) -> T[src]

Loading content...

Implementors

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

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

Loading content...