1 2 3 4 5 6 7
use crate::{Complex64, NumMatrix}; /// Defines an alias to NumMatrix with f64 pub type Matrix = NumMatrix<f64>; /// Defines an alias to NumMatrix with Complex64 pub type ComplexMatrix = NumMatrix<Complex64>;