1 2 3 4 5 6 7 8 9
use sukker::Matrix; fn main() { let path = "path/file.txt"; let a: Matrix<f32> = Matrix::from_file(path); a.print(3); }