[][src]Struct rustats::matrix::Matrix2

pub struct Matrix2 { /* fields omitted */ }

Methods

impl Matrix2[src]

pub fn new(r0: (f64, f64), r1: (f64, f64)) -> Self[src]

pub fn diagonal(a: f64, b: f64) -> Self[src]

pub fn from_lower_triangular(x: (f64, f64, f64)) -> Self[src]

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

pub fn det(&self) -> f64[src]

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

pub fn lower_triangular(&self) -> impl Iterator<Item = f64>[src]

pub fn lower_triangular_tuple(&self) -> (f64, f64, f64)[src]

Trait Implementations

impl SelectBandwidth<(f64, f64)> for Matrix2[src]

impl<'a, K> Pdf<Matrix2> for BayesianPosterior<'a, (f64, f64), K> where
    K: Pdf<(f64, f64)>, 
[src]

impl Clone for Matrix2[src]

impl Copy for Matrix2[src]

impl Mul<(f64, f64)> for Matrix2[src]

type Output = (f64, f64)

The resulting type after applying the * operator.

impl Mul<Matrix2> for Matrix2[src]

type Output = Matrix2

The resulting type after applying the * operator.

impl Debug for Matrix2[src]

Auto Trait Implementations

impl Send for Matrix2

impl Unpin for Matrix2

impl Sync for Matrix2

impl UnwindSafe for Matrix2

impl RefUnwindSafe for Matrix2

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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