The size function in Singular for a matrix is very misleading, though may be useful is some situations. Further as per the man page of
size, it does not accept bigintmat.
The best way to get the size of a matrix / intmat / bigintmat is to use nrows and ncols functions.
Code:
> bigintmat mymat[2][4] = 1,2,3,4,5,6,8;
> nrows (mymat);
> ncols (mymat);
VInay
The size function in Singular for a matrix is very misleading, though may be useful is some situations. Further as per the man page of [url=https://www.singular.uni-kl.de/Manual//4-0-3/sing_395.htm#SEC435]size[/url], it does not accept bigintmat.
The best way to get the size of a matrix / intmat / bigintmat is to use nrows and ncols functions.
[code]
> bigintmat mymat[2][4] = 1,2,3,4,5,6,8;
> nrows (mymat);
> ncols (mymat);
[/code]
VInay