russell_lab 1.14.0

Scientific laboratory for linear algebra and numerical mathematics
Documentation
1
2
3
4
5
6
7
use crate::{Complex64, NumVector};

/// Defines an alias to NumVector with f64
pub type Vector = NumVector<f64>;

/// Defines an alias to NumVector with Complex64
pub type ComplexVector = NumVector<Complex64>;