summaryrefslogtreecommitdiff
path: root/tests/unit_tests/test_double_OpLogNot.sci
diff options
context:
space:
mode:
authorjofret2010-06-22 15:31:55 +0000
committerjofret2010-06-22 15:31:55 +0000
commit79a0de7c6623433170f4965f0a6f07ebfed27f16 (patch)
treeef1a9981600c2e71856adb6ccd1a11558f2218cc /tests/unit_tests/test_double_OpLogNot.sci
parent6bd68f23dcee0f8cff08b200af2ce26d51b047d2 (diff)
downloadscilab2c-79a0de7c6623433170f4965f0a6f07ebfed27f16.tar.gz
scilab2c-79a0de7c6623433170f4965f0a6f07ebfed27f16.tar.bz2
scilab2c-79a0de7c6623433170f4965f0a6f07ebfed27f16.zip
separate float and double tests
Diffstat (limited to 'tests/unit_tests/test_double_OpLogNot.sci')
-rw-r--r--tests/unit_tests/test_double_OpLogNot.sci23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/unit_tests/test_double_OpLogNot.sci b/tests/unit_tests/test_double_OpLogNot.sci
deleted file mode 100644
index 6b103544..00000000
--- a/tests/unit_tests/test_double_OpLogNot.sci
+++ /dev/null
@@ -1,23 +0,0 @@
-function test_double_OpLogNot()
-// test OpLogNot
-
- disp(~(-2))
- disp(~(0))
- disp(~(3))
-
- disp(~(0-2*%i))
- disp(~(0+0*%i))
- disp(~(0+3*%i))
- disp(~(3-5*%i))
- disp(~(3+0*%i))
- disp(~(3+6*%i))
-
- a=[-1 2 3; 0 -1 4; 2 -0 5];
-
- disp(~(a))
-
- b=[0+3*%i 2-%i 1 ; 0-2*%i 2+2*%i 1-%i; 0+0*%i 4+0*%i 5-0*%i]
-
- disp(~(b))
-
-endfunction \ No newline at end of file