Module matrix

Source

Re-exports§

pub use self::det::*;
pub use self::submatrix::*;
pub use self::inv::*;
pub use self::transpose::*;
pub use self::add::*;
pub use self::sub::*;
pub use self::trace::*;
pub use self::adj::*;
pub use self::minor::*;
pub use self::cofactor::*;
pub use self::kronecker::*;
pub use self::mul::*;
pub use self::conj::*;
pub use self::herm::*;
pub use self::eig::*;
pub use self::diag::*;
pub use self::qr_householder::*;
pub use self::div::*;

Modules§

add
adj
cofactor
conj
det
diag
div
eig
herm
inv
kronecker
minor
mul
qr_householder
sub
submatrix
trace
transpose

Traits§

Matrix
SquareMatrix

Functions§

matrix_init
Initialize a matrix given an initializer expression. The initializer is given the row- and collumn-indices of the cell. It is allowed to mutate external state; we will always initialize the cells in order.