Function zoea::mtx::new_f64_zeros[][src]

pub fn new_f64_zeros(rows: usize, cols: usize) -> DMatrix<f64>
Expand description

new_f64_zeros

Create a new DMatrix of f64 zeros The f32 equivalent is new_f32_zeros

EXAMPLE:

use zoea::mtx;
let mut m: mtx::DMatrix<f64> = mtx::new_f64_zeros(2, 3);