Skip to content

Latest commit

 

History

History
executable file
·
30 lines (28 loc) · 1.28 KB

README.MD

File metadata and controls

executable file
·
30 lines (28 loc) · 1.28 KB

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