From 8b44229ef44f0558ce045e46ff833fb44df913c9 Mon Sep 17 00:00:00 2001 From: jofret Date: Mon, 21 Jun 2010 06:24:38 +0000 Subject: Tagging the 2.0 release of scilab2c --- tests/unit_tests/test_double_acosh.sci | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/unit_tests/test_double_acosh.sci (limited to 'tests/unit_tests/test_double_acosh.sci') diff --git a/tests/unit_tests/test_double_acosh.sci b/tests/unit_tests/test_double_acosh.sci new file mode 100644 index 00000000..73fe317a --- /dev/null +++ b/tests/unit_tests/test_double_acosh.sci @@ -0,0 +1,11 @@ +function test_double_acosh() + d0 = %pi + d2 = [1 2 3 4 ; 4 5 6 8 ; 9 10 11 12 ; 13 14 15 16] + z0 = d0 + %i * d0 + z2 = d2 + %i * d2 + + disp(acosh(d0)); + disp(acosh(d2)); + disp(acosh(z0)); + disp(acosh(z2)); +endfunction -- cgit