Struct ndarray_linalg::solveh::BKFactorized [] [src]

pub struct BKFactorized<S: Data> {
    pub a: ArrayBase<S, Ix2>,
    pub ipiv: Pivot,
}

Represents the Bunch–Kaufman factorization of a Hermitian (or real symmetric) matrix as A = P * U * D * U^H * P^T.

Fields

Trait Implementations

impl<A, S> SolveH<A> for BKFactorized<S> where
    A: Scalar,
    S: Data<Elem = A>, 
[src]

[src]

Solves a system of linear equations A * x = b with Hermitian (or real symmetric) 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. Read more

[src]

Solves a system of linear equations A * x = b with Hermitian (or real symmetric) matrix A, where A is self, b is the argument, and x is the successful result. Read more

[src]

Solves a system of linear equations A * x = b with Hermitian (or real symmetric) matrix A, where A is self, b is the argument, and x is the successful result. Read more

impl<A, S> InverseHInto for BKFactorized<S> where
    A: Scalar,
    S: DataMut<Elem = A>, 
[src]

[src]

Computes the inverse of the Hermitian (or real symmetric) matrix.

impl<A, S> InverseH for BKFactorized<S> where
    A: Scalar,
    S: Data<Elem = A>, 
[src]

[src]

Computes the inverse of the Hermitian (or real symmetric) matrix.

impl<A, S> DeterminantH for BKFactorized<S> where
    A: Scalar,
    S: Data<Elem = A>, 
[src]

[src]

Computes the determinant of the Hermitian (or real symmetric) matrix.

impl<A, S> DeterminantHInto for BKFactorized<S> where
    A: Scalar,
    S: Data<Elem = A>, 
[src]

[src]

Computes the determinant of the Hermitian (or real symmetric) matrix.