1 2 3 4 5 6 7 8 9
//! Complex vectors, matrices, and integrals, enabled by the `complex` feature use num_complex::Complex; pub type C64 = Complex<f64>; pub mod integral; pub mod matrix; pub mod vector;