|
Go to the first, previous, next, last section, table of contents.
- size(vect|mat)
-
::
[vect の長さ] または [mat の行数,mat の列数] .
- return
-
リスト
- vect
-
ベクトル
- mat
-
行列
-
vect 又は, mat のサイズをリストで出力する.
-
list のサイズは
length() を, 有理式に現れる単項式の数は nmono() を用いる.
[0] A = newvect(4);
[ 0 0 0 0 ]
[1] size(A);
[4]
[2] B = newmat(2,3,[[1,2,3],[4,5,6]]);
[ 1 2 3 ]
[ 4 5 6 ]
[3] size(B);
[2,3]
- 参照
-
section
car , cdr , cons , append , reverse , length , section nmono .
Go to the first, previous, next, last section, table of contents.
|