swig/Examples/scilab/matrix2/runme.sci
2013-04-29 20:23:04 +08:00

9 lines
180 B
Scilab

// loader the *.so
exec loader.sce
myMatrix=[ 103 3 1 12;0 0 2043 1];
m=sumitems_argoutput(myMatrix)
myOtherMatrix=getValues();
size(myOtherMatrix)
disp(myOtherMatrix);
exit