Skip to content

ahmubashshir/libmat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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