Struct nalgebra_lapack::QR[][src]

pub struct QR<N: Scalar, R: DimMin<C>, C: Dim> where
    DefaultAllocator: Allocator<N, R, C> + Allocator<N, DimMinimum<R, C>>, 
{ /* fields omitted */ }

The QR decomposition of a general matrix.

Implementations

impl<N: QRScalar + Zero, R: DimMin<C>, C: Dim> QR<N, R, C> where
    DefaultAllocator: Allocator<N, R, C> + Allocator<N, R, DimMinimum<R, C>> + Allocator<N, DimMinimum<R, C>, C> + Allocator<N, DimMinimum<R, C>>, 
[src]

pub fn new(m: MatrixMN<N, R, C>) -> Self[src]

Computes the QR decomposition of the matrix m.

pub fn r(&self) -> MatrixMN<N, DimMinimum<R, C>, C>[src]

Retrieves the upper trapezoidal submatrix R of this decomposition.

impl<N: QRReal + Zero, R: DimMin<C>, C: Dim> QR<N, R, C> where
    DefaultAllocator: Allocator<N, R, C> + Allocator<N, R, DimMinimum<R, C>> + Allocator<N, DimMinimum<R, C>, C> + Allocator<N, DimMinimum<R, C>>, 
[src]

pub fn unpack(
    self
) -> (MatrixMN<N, R, DimMinimum<R, C>>, MatrixMN<N, DimMinimum<R, C>, C>)
[src]

Retrieves the matrices (Q, R) of this decompositions.

pub fn q(&self) -> MatrixMN<N, R, DimMinimum<R, C>>[src]

Computes the orthogonal matrix Q of this decomposition.

Trait Implementations

impl<N: Clone + Scalar, R: Clone + DimMin<C>, C: Clone + Dim> Clone for QR<N, R, C> where
    DefaultAllocator: Allocator<N, R, C> + Allocator<N, DimMinimum<R, C>>, 
[src]

impl<N: Scalar + Copy, R: DimMin<C>, C: Dim> Copy for QR<N, R, C> where
    DefaultAllocator: Allocator<N, R, C> + Allocator<N, DimMinimum<R, C>>,
    MatrixMN<N, R, C>: Copy,
    VectorN<N, DimMinimum<R, C>>: Copy
[src]

impl<N: Debug + Scalar, R: Debug + DimMin<C>, C: Debug + Dim> Debug for QR<N, R, C> where
    DefaultAllocator: Allocator<N, R, C> + Allocator<N, DimMinimum<R, C>>, 
[src]

Auto Trait Implementations

impl<N, R, C> !RefUnwindSafe for QR<N, R, C>

impl<N, R, C> !Send for QR<N, R, C>

impl<N, R, C> !Sync for QR<N, R, C>

impl<N, R, C> !Unpin for QR<N, R, C>

impl<N, R, C> !UnwindSafe for QR<N, R, C>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,