Go to the first, previous, next, last section, table of contents.


map

map(function,arg0,arg1,...)
:: リスト, 配列の各要素に函数を適用する.
return
arg0 と同じ型のオブジェクト
function
函数名
arg0
リスト, ベクトル, 行列
arg1 ...
任意 (残りの引数)
[82] def afo(X) { return X^3; }
[83] map(afo,[1,2,3]);
[1,8,27]


Go to the first, previous, next, last section, table of contents.