source: git/Tst/Old/trans.tst @ 1ebec3

spielwiese
Last change on this file since 1ebec3 was 37cd955, checked in by Hans Schoenemann <hannes@…>, 14 years ago
pagelength removed git-svn-id: file:///usr/local/Singular/svn/trunk@13172 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 365 bytes
Line 
1//
2// test script for transpose command
3//
4ring r1 = 0,(x,y,z),dp;
5r1;
6"-------------------------------";
7matrix m1[2][3]=1,2,3,4,-1,0;
8LIB "lib0";
9pmat(m1);
10transpose(m1);
11"---------------------------------";
12matrix m2[3][2]=x2,y2,2z2,0,1,xz;
13pmat(m2);
14pmat(transpose(m2));
15"--------------------------------";
16listvar(all);
17kill r1;
18LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.