Trait lax::cholesky::SolveCholeskyImpl

source ·
pub trait SolveCholeskyImpl: Scalar {
    // Required method
    fn solve_cholesky(
        l: MatrixLayout,
        uplo: UPLO,
        a: &[Self],
        b: &mut [Self],
    ) -> Result<()>;
}
Expand description

Solve linear equation using Cholesky factroization result

§LAPACK correspondance

f32f64c32c64
spotrsdpotrscpotrszpotrs

Required Methods§

source

fn solve_cholesky( l: MatrixLayout, uplo: UPLO, a: &[Self], b: &mut [Self], ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl SolveCholeskyImpl for f32

source§

fn solve_cholesky( l: MatrixLayout, uplo: UPLO, a: &[Self], b: &mut [Self], ) -> Result<()>

source§

impl SolveCholeskyImpl for f64

source§

fn solve_cholesky( l: MatrixLayout, uplo: UPLO, a: &[Self], b: &mut [Self], ) -> Result<()>

source§

impl SolveCholeskyImpl for c32

source§

fn solve_cholesky( l: MatrixLayout, uplo: UPLO, a: &[Self], b: &mut [Self], ) -> Result<()>

source§

impl SolveCholeskyImpl for c64

source§

fn solve_cholesky( l: MatrixLayout, uplo: UPLO, a: &[Self], b: &mut [Self], ) -> Result<()>

Implementors§