git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11599 626c5289-ae23-0410-ae9c-e8d60b6d4f22
11 lines
132 B
Matlab
11 lines
132 B
Matlab
li_std_vector
|
|
|
|
iv = IntVector(4);
|
|
for i=0:3,
|
|
iv(i) = i;
|
|
endfor
|
|
x = average(iv);
|
|
|
|
if (x != 1.5)
|
|
error("average failed");
|
|
endif
|