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