Struct wee_matrix::QR [] [src]

pub struct QR<T, S> { /* fields omitted */ }

QR decomposition structure using value storage type T and scalar factors storage type S

Methods

impl QR<Matrix, Vec<f64>>
[src]

[src]

Return the Q orthogonal matrix for the decomposition. This is a heavy operation: it will generate an entirely new matrix from the decomposition data.

[src]

Return the R upper triangular matrix for the decomposition. This is a heavy operation: it will generate an entirely new matrix from the decomposition data.

Trait Implementations

impl<T: Debug, S: Debug> Debug for QR<T, S>
[src]

[src]

Formats the value using the given formatter.

impl<T: Clone, S: Clone> Clone for QR<T, S>
[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 QR<Matrix, Vec<f64>>
[src]

[src]

Generate a matrix from this decomposition.