From 404fe6d0c2f7ddc158d8d14a0974ed94287ff9da Mon Sep 17 00:00:00 2001 From: simon Date: Thu, 16 Jul 2009 12:35:30 +0000 Subject: added test for find and corrected the interface updated INIT_FillSCI2LibCDirs --- tests/unit_tests/test_double_Find.sci | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 tests/unit_tests/test_double_Find.sci (limited to 'tests/unit_tests') diff --git a/tests/unit_tests/test_double_Find.sci b/tests/unit_tests/test_double_Find.sci new file mode 100644 index 00000000..fd1d09a0 --- /dev/null +++ b/tests/unit_tests/test_double_Find.sci @@ -0,0 +1,31 @@ +function test_double_Find () + + disp (find( 1 == 3 )); // d0Findd0 + + a = [1 2 3; 4 5 6]; + b = [1 8 3; 9 5 6]; + disp (find( a == b )); // d2Findd2 + + [ z , j ] = find (1 == 3); // d0Findd0d0 + [ k , l ] = find (a == b); // d2Findd2d2 + + disp(z); + disp(j); + disp(k); + disp(l); + + disp ( find( 1 == 3 , 2 )); // d0d0Findd0 + + c = [1 2 3; 4 5 6]; + d = [1 8 3; 9 5 6]; + disp (find( c == d , 2 )); // d2d0Findd2 + + [ o , p ] = find (1 == 3 , 2); // d0d0Findd0d0 + [ q , s ] = find (c == d , 2); // d2d0Findd2d2 + + disp(o); + disp(p); + disp(q); + disp(s); + +endfunction -- cgit