From 277d1edfa17bf3719d90ddbac8e31f6181e952c3 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 tests/unit_tests/test013_TestOpRcCC/scilabcode/mainfunction.sci (limited to 'tests/unit_tests/test013_TestOpRcCC/scilabcode') 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 0000000..eda20c4 --- /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