swig/Examples/scilab/matrix2/runme.sci
2010-04-14 01:36:40 +00:00

10 lines
169 B
Scilab

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