[][src]Struct na::linalg::givens::GivensRotation

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

A Givens rotation.

Methods

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> Copy for GivensRotation<N> where
    N: Copy + ComplexField,
    <N as ComplexField>::RealField: Copy
[src]

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

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

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

Auto Trait Implementations

impl<N> Send for GivensRotation<N> where
    <N as ComplexField>::RealField: Send

impl<N> Sync for GivensRotation<N> where
    <N as ComplexField>::RealField: Sync

Blanket Implementations

impl<V> IntoVec for V[src]

impl<V> IntoPnt for V[src]

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

type Owned = T

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<T> Same for T

type Output = T

Should always be Self

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