Back to Homepage
Features of macs.0.2
command explanation
=====================================================================================================
- cm......Creates an empty matrix m1 (no elements yet) with c columns and r rows.
- fm......Fills an empty matrix m1 (by manual putting in the the elements)
- sl......Show list of matrices (Null means : no elements yet)
- sm......Show matrix m1
- add.....Adds matrix m1 and matrix m2. The result is stored in matrix m3.
- mul.....Multiplies matrix m1 with matrix m2. The result is stored in matrix m3.
- det.....Computes the determinant of matrix m1
- inv.....Computes inverse matrix of matrix m1. The resulting matrix is stored in m2
- tra.....Transposes matrix m1. Result is stored in matrix m2.
- sub.....Subtracts matrix m2 of Matrix m1. The result is stored in matrix m3.
- lin.....Solves for coeff. matrix m1 and vector v1. Resutl is stored in vector v2.
- icc.....Switch column c1 and column c2 from matrix m1.
- irr.....Switch row r1 and row r2 from matrix m1.p
- ms......Multiplies matrix m1 with scalar s.
- psc.....Multiplies column c1 of matrix m1 with scalar s.
- psr.....Multiplies row r1 of matrix m1 with scalar s.
- mcc.....Adds column c2 of matrix m1 s times to column c1.
- mrr.....Adds row r2 of matrix m1 s times to row r1.
- hlp.....Shows this help message.
- urt.....Computes the Upper Rigth Triangular matrix of m1. Result is stored in m2.
- ran.....Creates a matrix m1 with k colmuns and r rows. The matrix id filled with random values between main and max
- wtf.....Writes matrix m1 to file file1.
- rff.....Reads matrix m1 from file file1.
Back to Homepage