Struct rin::math::linalg::givens::GivensRotation[][src]

pub struct GivensRotation<N> where
    N: ComplexField
{ /* fields omitted */ }

A Givens rotation.

Implementations

impl<N> GivensRotation<N> where
    N: ComplexField
[src]

pub fn identity() -> GivensRotation<N>[src]

The Givents rotation that does nothing.

pub fn new_unchecked(
    c: <N as ComplexField>::RealField,
    s: N
) -> GivensRotation<N>
[src]

Initializes a Givens rotation from its components.

The components are copies as-is. It is not checked whether they describe an actually valid Givens rotation.

pub fn new(c: N, s: N) -> (GivensRotation<N>, N)[src]

Initializes a Givens rotation from its non-normalized cosine an sine components.

pub fn try_new(
    c: N,
    s: N,
    eps: <N as ComplexField>::RealField
) -> Option<(GivensRotation<N>, N)>
[src]

Initializes a Givens rotation form its non-normalized cosine an sine components.

pub fn cancel_y<S>(v: &Matrix<N, U2, U1, S>) -> Option<(GivensRotation<N>, N)> where
    S: Storage<N, U2, U1>, 
[src]

Computes the rotation R required such that the y component of R * v is zero.

Returns None if no rotation is needed (i.e. if v.y == 0). Otherwise, this returns the norm of v and the rotation r such that R * v = [ |v|, 0.0 ]^t where |v| is the norm of v.

pub fn cancel_x<S>(v: &Matrix<N, U2, U1, S>) -> Option<(GivensRotation<N>, N)> where
    S: Storage<N, U2, U1>, 
[src]

Computes the rotation R required such that the x component of R * v is zero.

Returns None if no rotation is needed (i.e. if v.x == 0). Otherwise, this returns the norm of v and the rotation r such that R * v = [ 0.0, |v| ]^t where |v| is the norm of v.

pub fn c(&self) -> <N as ComplexField>::RealField[src]

The cos part of this roration.

pub fn s(&self) -> N[src]

The sin part of this roration.

pub fn inverse(&self) -> GivensRotation<N>[src]

The inverse of this givens rotation.

pub fn rotate<R2, C2, S2>(&self, rhs: &mut Matrix<N, R2, C2, S2>) where
    C2: Dim,
    R2: Dim,
    S2: StorageMut<N, R2, C2>,
    ShapeConstraint: DimEq<R2, U2>, 
[src]

Performs the multiplication rhs = self * rhs in-place.

pub fn rotate_rows<R2, C2, S2>(&self, lhs: &mut Matrix<N, R2, C2, S2>) where
    C2: Dim,
    R2: Dim,
    S2: StorageMut<N, R2, C2>,
    ShapeConstraint: DimEq<C2, U2>, 
[src]

Performs the multiplication lhs = lhs * self in-place.

Trait Implementations

impl<N> Clone for GivensRotation<N> where
    N: Clone + ComplexField,
    <N as ComplexField>::RealField: Clone
[src]

impl<N> Debug for GivensRotation<N> where
    N: Debug + ComplexField,
    <N as ComplexField>::RealField: Debug
[src]

impl<N> Copy for GivensRotation<N> where
    N: Copy + ComplexField,
    <N as ComplexField>::RealField: Copy
[src]

Auto Trait Implementations

impl<N> RefUnwindSafe for GivensRotation<N> where
    N: RefUnwindSafe,
    <N as ComplexField>::RealField: RefUnwindSafe

impl<N> Send for GivensRotation<N>

impl<N> Sync for GivensRotation<N>

impl<N> Unpin for GivensRotation<N> where
    N: Unpin,
    <N as ComplexField>::RealField: Unpin

impl<N> UnwindSafe for GivensRotation<N> where
    N: UnwindSafe,
    <N as ComplexField>::RealField: UnwindSafe

Blanket Implementations

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

impl<T> Any for T where
    T: Any
[src]

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

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

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Any + Send + Sync
[src]

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

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

impl<V> IntoPnt<V> for V[src]

impl<V> IntoVec<V> for V[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

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

type Output = T

Should always be Self

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

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>, 
[src]

impl<T> Slottable for T where
    T: Copy
[src]