diff options
Diffstat (limited to '2.3-1/tests/unit_tests/test200_malloc/scilabcode/myinit.sci')
-rw-r--r-- | 2.3-1/tests/unit_tests/test200_malloc/scilabcode/myinit.sci | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2.3-1/tests/unit_tests/test200_malloc/scilabcode/myinit.sci b/2.3-1/tests/unit_tests/test200_malloc/scilabcode/myinit.sci new file mode 100644 index 00000000..af38cf5c --- /dev/null +++ b/2.3-1/tests/unit_tests/test200_malloc/scilabcode/myinit.sci @@ -0,0 +1,13 @@ +//SCI2C: NIN= 2 +//SCI2C: NOUT= 1 +//SCI2C: OUT(1).TP= IN(1).TP +//SCI2C: OUT(1).SZ(1)= IN(1).VAL +//SCI2C: OUT(1).SZ(2)= IN(1).VAL +//SCI2C: DEFAULT_PRECISION= DOUBLE
+function out = myinit(n,m)
+
+out1 = m+ones(n,n); +out = out1+2*ones(n,n); + +endfunction
+ |