Struct wee_matrix::Cholesky [] [src]

pub struct Cholesky<T> { /* fields omitted */ }

Cholesky decomposition structure using value storage type T.

Methods

impl Cholesky<Matrix>
[src]

[src]

Return the L lower triangular matrix for the decomposition (such that A=LL*). This is a heavy operation: it will generate an entirely new matrix from the decomposition data.

Trait Implementations

impl<T: Debug> Debug for Cholesky<T>
[src]

[src]

Formats the value using the given formatter.

impl<T: Clone> Clone for Cholesky<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Compose<Matrix> for Cholesky<Matrix>
[src]

[src]

Generate a matrix from this decomposition.