4 Matrix Functions
| 
                             Function  | 
                             Description  | 
|---|---|
| MatrixAdd | 
                             Adds the value of each element in the source one matrix with its counterpart in the source two matrix and places the result in the destination matrix.  | 
| MatrixMultiply | 
                             Performs the matrix multiplication between the source one and source two matrices and places the result in the destination matrix.  | 
| MatrixScale | 
                             Scales (multiplies) the values of all elements in the source matrix by a scale value and places the result in the destination matrix.  | 
| MatrixSubtract | 
                             Subtracts the value of each element in the source two matrix from its counterpart in the source one matrix and places the result in the destination matrix.  | 
| MatrixTranspose | 
                             Transposes the rows by the columns in the source matrix and places the result in the destination matrix.  | 
| MatrixInvert | 
                             Computes the inverse of the source matrix and places the result in the destination matrix.  | 
