/libmat

A library for calculating matrics

Primary LanguageC++GNU General Public License v3.0GPL-3.0

libmat

Build Status Downloads GitHub issues GitHub license

A library for calculating matrics

Currently Supports:

  • Dynamic Sized Matrics
  • Reinitialization:
mat.reinit(column,row,"MatA");
  • Book like output: mat.out()
  • intelligent Indentation in output
  • Add operation : mat.add(mata,matb);
  • Subtract Operation : mat.sub(mata,matb);
  • Multiply Operation:
    • Matrics : mat.mul(mata,matb);
    • Scalar : mat.add(3);
  • Accessable as raw(array): mat.get_raw()
  • Dynamic Linking

Would be Supported:

  • Transversing
  • Determinant
  • Identity matrices
  • Inverse matrix
  • Operator overriding
  • C Linking Support
  • Exception Handlers

Build History

Build