source: git/Tst/Old/col.tst @ e706ff

spielwiese
Last change on this file since e706ff 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: 509 bytes
Line 
1//
2// test script for cols command
3//
4ring r = 32003,(x,y,z),dp;
5r;
6matrix m1[3][3];
7int c1;
8c1=ncols(m1);
9c1;
10"------------------------------------";
11matrix m2[2][4];
12int c2;
13c2=ncols(m2);
14c2;
15"------------------------------------";
16matrix m3[1][1];
17int c3;
18c3=ncols(m3);
19c3;
20"-------------------------------------";
21int n=6;
22matrix m4[1][n];
23int c4;
24c4=ncols(m4);
25c4;
26"-------------------------------------";
27matrix m5[100][1];
28int c5;
29c5=ncols(m5);
30c5;
31listvar(all);
32kill r;
33LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.