From b43eccd4cffed5bd1017c5821524fb6e49202f78 Mon Sep 17 00:00:00 2001 From: Sandeep Gupta Date: Sun, 18 Jun 2017 23:55:40 +0530 Subject: First commit --- .../test013_TestOpRcCC/scilabcode/mainfunction.sci | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 2.3-1/tests/unit_tests/test013_TestOpRcCC/scilabcode/mainfunction.sci (limited to '2.3-1/tests/unit_tests/test013_TestOpRcCC/scilabcode') diff --git a/2.3-1/tests/unit_tests/test013_TestOpRcCC/scilabcode/mainfunction.sci b/2.3-1/tests/unit_tests/test013_TestOpRcCC/scilabcode/mainfunction.sci new file mode 100644 index 00000000..eda20c46 --- /dev/null +++ b/2.3-1/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