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>;