russell_lab 1.11.0

Scientific laboratory for linear algebra and numerical mathematics
Documentation
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>;