
|
Go to the first, previous, next, last section, table of contents.
- vtol(vect)
-
:: ベクトルをリストに変換する.
- return
-
リスト
- vect
-
ベクトル
-
長さ n のベクトル vect を
[vect[0],...,vect[n-1]] なるリストに変換する.
-
リストからベクトルへの変換は
newvect() で行う.
[3] A=newvect(3,[1,2,3]);
[ 1 2 3 ]
[4] vtol(A);
[1,2,3]
- 参照
-
section
newvect .
Go to the first, previous, next, last section, table of contents.
|