matrix library
Description
A matrix is an ordered set of numbers in a rectangular form.
Example:
[2 5 7 8]
[5 6 8 9]
[3 9 0 1]
Matrices are used commonly in the field of computer science because they allow for useful operations such as the transformation of geometric objects and the solving of linear equations.
Your job is to write a matrix library that allows you to do basic matrix operations.
Requirements:
Your matrix library must allow to you work with matrices of a general size. e.g. NxM
Additional/Optional Requirements
Add extra functionality to your library that allows you to
Concepts
Updated: