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

fieker-DuValspielwiese
Last change on this file since e64eae5 was 46976a6, checked in by Olaf Bachmann <obachman@…>, 26 years ago
* added status check to regress.cmd * added tst_status(1); call to each tst file, just before quit git-svn-id: file:///usr/local/Singular/svn/trunk@2271 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 529 bytes
Line 
1//
2// test script for cols command
3//
4pagelength = 10000;
5ring r = 32003,(x,y,z),dp;
6r;
7matrix m1[3][3];
8int c1;
9c1=ncols(m1);
10c1;
11"------------------------------------";
12matrix m2[2][4];
13int c2;
14c2=ncols(m2);
15c2;
16"------------------------------------";
17matrix m3[1][1];
18int c3;
19c3=ncols(m3);
20c3;
21"-------------------------------------";
22int n=6;
23matrix m4[1][n];
24int c4;
25c4=ncols(m4);
26c4;
27"-------------------------------------";
28matrix m5[100][1];
29int c5;
30c5=ncols(m5);
31c5;
32listvar(all);
33kill r;
34LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.