Trait ndarray_linalg::tridiagonal::SolveTridiagonalInplace[][src]

pub trait SolveTridiagonalInplace<A: Scalar, D: Dimension> {
    fn solve_tridiagonal_inplace<'a, S: DataMut<Elem = A>>(
        &self,
        b: &'a mut ArrayBase<S, D>
    ) -> Result<&'a mut ArrayBase<S, D>>;
fn solve_t_tridiagonal_inplace<'a, S: DataMut<Elem = A>>(
        &self,
        b: &'a mut ArrayBase<S, D>
    ) -> Result<&'a mut ArrayBase<S, D>>;
fn solve_h_tridiagonal_inplace<'a, S: DataMut<Elem = A>>(
        &self,
        b: &'a mut ArrayBase<S, D>
    ) -> Result<&'a mut ArrayBase<S, D>>; }

Required methods

fn solve_tridiagonal_inplace<'a, S: DataMut<Elem = A>>(
    &self,
    b: &'a mut ArrayBase<S, D>
) -> Result<&'a mut ArrayBase<S, D>>
[src]

Solves a system of linear equations A * x = b tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. The value of x is also assigned to the argument.

fn solve_t_tridiagonal_inplace<'a, S: DataMut<Elem = A>>(
    &self,
    b: &'a mut ArrayBase<S, D>
) -> Result<&'a mut ArrayBase<S, D>>
[src]

Solves a system of linear equations A^T * x = b tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. The value of x is also assigned to the argument.

fn solve_h_tridiagonal_inplace<'a, S: DataMut<Elem = A>>(
    &self,
    b: &'a mut ArrayBase<S, D>
) -> Result<&'a mut ArrayBase<S, D>>
[src]

Solves a system of linear equations A^H * x = b tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. The value of x is also assigned to the argument.

Loading content...

Implementations on Foreign Types

impl<A, S> SolveTridiagonalInplace<A, Dim<[usize; 2]>> for ArrayBase<S, Ix2> where
    A: Scalar + Lapack,
    S: Data<Elem = A>, 
[src]

Loading content...

Implementors

impl<A> SolveTridiagonalInplace<A, Dim<[usize; 2]>> for LUFactorizedTridiagonal<A> where
    A: Scalar + Lapack
[src]

impl<A> SolveTridiagonalInplace<A, Dim<[usize; 2]>> for Tridiagonal<A> where
    A: Scalar + Lapack
[src]

Loading content...