From 54e0f5208ee8064f16919dcc5c564c2241fc3085 Mon Sep 17 00:00:00 2001 From: nutricato Date: Thu, 4 Feb 2010 05:35:15 +0000 Subject: --- .../test013_TestOpRcCC/scilabcode/mainfunction.sci | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/unit_tests/test013_TestOpRcCC/scilabcode/mainfunction.sci (limited to 'tests/unit_tests/test013_TestOpRcCC/scilabcode/mainfunction.sci') diff --git a/tests/unit_tests/test013_TestOpRcCC/scilabcode/mainfunction.sci b/tests/unit_tests/test013_TestOpRcCC/scilabcode/mainfunction.sci new file mode 100644 index 00000000..eda20c46 --- /dev/null +++ b/tests/unit_tests/test013_TestOpRcCC/scilabcode/mainfunction.sci @@ -0,0 +1,15 @@ +//SCI2C: DEFAULT_PRECISION= DOUBLE + +function mainfunction() + +vr1 = [1 2]; +vr2 = [3 4]; +vc1 = [11;12] +vc2 = [13;14] +M1 = [vr1 vr2;vr2 vr1]; +M2 = [vc1 vc2]; + +disp(M1); +disp(M2); + +endfunction -- cgit