| Button | Description |
|---|---|
| A + B | Adds two matrices. |
| A - B | Subtracts matrix B from matrix A. |
| A * B | Multiplies 2 matrices. |
| A + x | Adds a number to every element in matrix A. |
| A - x | Subtracts a number from every element in matrix A |
| A * x | Multiplies a number to every element in matrix A |
| A ^ -1 | Calculates inverse of matrix A. |
| A ^ x | Raises matrix A to integer power x |
| Transp(A) | Calculates A transposed. |
| Trace(A) | Calculates the trace of matrix A (sum of elements on the diagonal). |
| Rank(A) | Calculates the rank of matrix A. |
| Det(A) | Calculates the determinant of matrix A. |
| Min(A) | Finds the minimum element of matrix A. |
| Max(A) | Finds the maximum element of matrix A. |