Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 309 Bytes

File metadata and controls

20 lines (16 loc) · 309 Bytes

matrix

Rust library that allows matrix operations.

Usage

let matrix = Matrix::new(
    vec![
        vec![13, 43, 24],
        vec![53, -1, 0],
    ]
);

At this moment, you cannot do anything else than printing it.

To Do List

  • add
  • multiplication (matrix)
  • multiplication (int)