Struct ndarray_linalg::krylov::householder::Householder[][src]

pub struct Householder<A: Scalar> { /* fields omitted */ }

Iterative orthogonalizer using Householder reflection

Implementations

impl<A: Scalar + Lapack> Householder<A>[src]

pub fn new(dim: usize, tol: A::Real) -> Self[src]

Create a new orthogonalizer

pub fn forward_reflection<S>(&self, a: &mut ArrayBase<S, Ix1>) where
    S: DataMut<Elem = A>, 
[src]

Take forward reflection P = P_l ... P_1

pub fn backward_reflection<S>(&self, a: &mut ArrayBase<S, Ix1>) where
    S: DataMut<Elem = A>, 
[src]

Take backward reflection P = P_1 ... P_l

Trait Implementations

impl<A: Clone + Scalar> Clone for Householder<A> where
    A::Real: Clone
[src]

impl<A: Debug + Scalar> Debug for Householder<A> where
    A::Real: Debug
[src]

impl<A: Scalar + Lapack> Orthogonalizer for Householder<A>[src]

type Elem = A

Auto Trait Implementations

impl<A> RefUnwindSafe for Householder<A> where
    A: RefUnwindSafe,
    <A as Scalar>::Real: RefUnwindSafe

impl<A> Send for Householder<A> where
    A: Send,
    <A as Scalar>::Real: Send

impl<A> Sync for Householder<A> where
    A: Sync,
    <A as Scalar>::Real: Sync

impl<A> Unpin for Householder<A> where
    <A as Scalar>::Real: Unpin

impl<A> UnwindSafe for Householder<A> where
    A: RefUnwindSafe,
    <A as Scalar>::Real: UnwindSafe

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> 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>,