ahmubashshir / libmat

A library for calculating matrics

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

A library for calculating matrics

License:GNU General Public License v3.0


Languages

Language:C++ 94.8%Language:Makefile 5.2%