[−][src]Struct rustats::matrix::Matrix2  
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]
fn select_bandwidth<K: Kernel<(f64, f64)>>(
    &self, 
    _kernel: &K, 
    _points: &[(f64, f64)]
) -> Matrix2[src]
&self,
_kernel: &K,
_points: &[(f64, f64)]
) -> Matrix2
impl<'a, K> Pdf<Matrix2> for BayesianPosterior<'a, (f64, f64), K> where
    K: Pdf<(f64, f64)>, [src]
K: Pdf<(f64, f64)>,
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.
fn mul(self, rhs: (f64, f64)) -> Self::Output[src]
impl Mul<Matrix2> for Matrix2[src]
type Output = Matrix2
The resulting type after applying the * operator.
fn mul(self, rhs: Matrix2) -> Self::Output[src]
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]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
V: MultiLane<T>,