Back

2.wxmx

/ Generate the matrix into echelon form and find its rank./

row:read("enter your matrix row:")$;

col:read("enter your matrix column :")$;

Matrix:entermatrix(row,col);

Echelon:echelon(Matrix);

Rank:rank(Echelon);