Skip to content

mploof/matrix_math

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

matrix_math

A simple matrix class for Arduino compatible MCUs specifically for handling integer matricies. The intent of this class is to create matrix objects with the necessary functions to be used for spline interpolation through fixed points. For my particular application, this can be achieved entirely with integers, so this library does not support floating point math in the interest of increasing calculation speed.

#####Current Functions Available

  • Add, subtract, multiply matricies
  • Add, subtract, multiply matrix by integer
  • Append vectors to matricies as rows and columns
  • Extract rows and and columns from matricies to vectors
  • Print a row, column, or entire matrix
  • Find determinant for order n matrix, where n =< 7

#####Functions to be Added

  • Transpose matrix
  • Row reduction

#####Useful Spline Interpolation References

About

A simple matrix math library specifically for handling integer matricies

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages