Trait FloatMatrix

Source
pub trait FloatMatrix<F>: Matrix
where F: Float, Self: Clone + Div<F, Output = Self>,
{ // Required methods fn determinant(&self) -> F; fn cofactor(&self) -> Self; // Provided method fn inverse(&self) -> Self { ... } }

Required Methods§

Source

fn determinant(&self) -> F

Source

fn cofactor(&self) -> Self

Provided Methods§

Source

fn inverse(&self) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<F> FloatMatrix<F> for M2<F>
where F: Float,

Source§

impl<F> FloatMatrix<F> for M3<F>
where F: Float,

Source§

impl<F> FloatMatrix<F> for M4<F>
where F: Float,