Struct visioncortex::Matrix

source ·
pub struct Matrix<const I: usize, const J: usize> {
    pub m: [[f64; J]; I],
}
Expand description

Matrix operations adapted from https://github.com/sloisel/numeric

Fields§

§m: [[f64; J]; I]

Implementations§

source§

impl<const I: usize, const J: usize> Matrix<I, J>

source

pub fn new(m: [[f64; J]; I]) -> Self

source

pub fn dim(&self) -> [usize; 2]

source

pub fn transpose(&self) -> Matrix<J, I>

source§

impl<const I: usize> Matrix<I, I>

Only for square matrix

source

pub fn identity() -> Self

source

pub fn inv(&self) -> Option<Self>

source§

impl<const I: usize, const J: usize> Matrix<I, J>

source

pub fn dot_mm_small<const K: usize>(&self, y: &Matrix<J, K>) -> Matrix<I, K>

Multiply two matrices

source

pub fn dot_mv(&self, y: &[f64; J]) -> [f64; I]

Multiply a matrix to a vector

source

pub fn dot_vv<const K: usize>(x: &[f64; K], y: &[f64; K]) -> f64

source

pub fn eq(&self, y: &Self, epsilon: f64) -> bool

source

pub fn scale(&mut self, s: f64)

Trait Implementations§

source§

impl<const I: usize, const J: usize> Clone for Matrix<I, J>

source§

fn clone(&self) -> Matrix<I, J>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<const I: usize, const J: usize> Debug for Matrix<I, J>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<const I: usize, const J: usize> Default for Matrix<I, J>

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<const I: usize, const J: usize> Freeze for Matrix<I, J>

§

impl<const I: usize, const J: usize> RefUnwindSafe for Matrix<I, J>

§

impl<const I: usize, const J: usize> Send for Matrix<I, J>

§

impl<const I: usize, const J: usize> Sync for Matrix<I, J>

§

impl<const I: usize, const J: usize> Unpin for Matrix<I, J>

§

impl<const I: usize, const J: usize> UnwindSafe for Matrix<I, J>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.