SolveTriangularInto

Trait SolveTriangularInto 

Source
pub trait SolveTriangularInto<S, D>
where S: DataMut, D: Dimension,
{ // Required method fn solve_triangular_into( &self, uplo: UPLO, diag: Diag, b: ArrayBase<S, D>, ) -> Result<ArrayBase<S, D>, LinalgError>; }
Expand description

solve a triangular system with upper triangular matrix

Required Methods§

Source

fn solve_triangular_into( &self, uplo: UPLO, diag: Diag, b: ArrayBase<S, D>, ) -> Result<ArrayBase<S, D>, LinalgError>

Implementors§

Source§

impl<A, Si, So> SolveTriangularInto<So, Dim<[usize; 1]>> for ArrayBase<Si, Dim<[usize; 2]>>
where A: Scalar + Lapack, Si: Data<Elem = A>, So: DataMut<Elem = A> + DataOwned,

Source§

impl<A, Si, So> SolveTriangularInto<So, Dim<[usize; 2]>> for ArrayBase<Si, Dim<[usize; 2]>>
where A: Scalar + Lapack, Si: Data<Elem = A>, So: DataMut<Elem = A> + DataOwned,