Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 476 Bytes

File metadata and controls

15 lines (10 loc) · 476 Bytes

small-cpp-matrix-library

A small header only c++ library for matrix manipulation with run-time concatenation

Supports basic arithmetic (+,-,/,*) as well as matrix-matrix concatenation

Horizontal concatenation: (A || B) Vertical concatenation: (A | B)

Note: Yes, concatenation has a overhead.

And also supports some matrix transformations

  • LU decomposition, determinant, inverse, transpose.

With helper functions,

  • rand, diag, ones, eye, reshape.