[][src]Struct parry2d::utils::SdpMatrix2

pub struct SdpMatrix2<N> {
    pub m11: N,
    pub m12: N,
    pub m22: N,
}

A 2x2 symmetric-definite-positive matrix.

Fields

m11: N

The component at the first row and first column of this matrix.

m12: N

The component at the first row and second column of this matrix.

m22: N

The component at the second row and second column of this matrix.

Implementations

impl<N: SimdRealField> SdpMatrix2<N>[src]

pub fn new(m11: N, m12: N, m22: N) -> Self[src]

A new SDP 2x2 matrix with the given components.

Because the matrix is symmetric, only the lower off-diagonal component is required.

pub fn from_sdp_matrix(mat: Matrix2<N>) -> Self[src]

Build an SdpMatrix2 structure from a plain matrix, assuming it is SDP.

No check is performed to ensure mat is actually SDP.

pub fn zero() -> Self[src]

Create a new SDP matrix filled with zeros.

pub fn diagonal(val: N) -> Self[src]

Create a new SDP matrix with its diagonal filled with val, and its off-diagonal elements set to zero.

pub fn add_diagonal(&mut self, elt: N) -> Self[src]

Adds val to the diagonal components of self.

pub fn inverse_unchecked(&self) -> Self[src]

Compute the inverse of this SDP matrix without performing any inversibility check.

pub fn into_matrix(self) -> Matrix2<N>[src]

Convert this SDP matrix to a regular matrix representation.

Trait Implementations

impl<N: SimdRealField> Add<SdpMatrix2<N>> for SdpMatrix2<N>[src]

type Output = Self

The resulting type after applying the + operator.

impl<N: Clone> Clone for SdpMatrix2<N>[src]

impl<N: Copy> Copy for SdpMatrix2<N>[src]

impl<N: Debug> Debug for SdpMatrix2<N>[src]

impl<N: SimdRealField> Mul<Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>> for SdpMatrix2<N>[src]

type Output = Vector2<N>

The resulting type after applying the * operator.

impl<N: PartialEq> PartialEq<SdpMatrix2<N>> for SdpMatrix2<N>[src]

impl<N> StructuralPartialEq for SdpMatrix2<N>[src]

Auto Trait Implementations

impl<N> RefUnwindSafe for SdpMatrix2<N> where
    N: RefUnwindSafe
[src]

impl<N> Send for SdpMatrix2<N> where
    N: Send
[src]

impl<N> Sync for SdpMatrix2<N> where
    N: Sync
[src]

impl<N> Unpin for SdpMatrix2<N> where
    N: Unpin
[src]

impl<N> UnwindSafe for SdpMatrix2<N> where
    N: UnwindSafe
[src]

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> Downcast for T where
    T: Any
[src]

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

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

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

impl<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, 
[src]

impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: PartialEq<T> + Copy + Any + Debug
[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>,