Updated testsuite with an expected GCL error in to_poly_share
[maxima.git] / share / linearalgebra / linearalgebra.dem
blob3b9ecda918d8a78e82e0be79b521d4e885d74742
1 load("linearalgebra");
3 m : matrix([1,2],[1,2]);
5 nullspace(m);
7 columnspace(m);
9 ptriangularize(m-z*ident(2),z);
11 m : matrix([1,2,3],[4,5,6],[7,8,9]) - z * ident(3);
13 mm : ptriangularize(m,z);
15 algebraic : true;
17 tellrat(mm[3,3]);
19 mm : ratsimp(mm);
21 nullspace(mm);
23 m : matrix([1,2,3,4],[5,6,7,8],[9,10,11,12],[13,14,15,16]);
25 column_space(m);
27 apply('orthogonal_complement, args(nullspace(transpose(m))));
29 untellrat(z);