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


f_res.listadd

f_res.listadd(A, B )
:: リストをベクトルと見て和を求める
A
B
リスト
return
リスト
[0] f_res.listadd( [1,2,3], [4,5,6] );
[5,7,9]
[1] f_res.listadd( [a,b,c], [d,e,f] );
[a+d,b+e,c+f]


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