diff options
author | simon | 2009-07-16 12:35:30 +0000 |
---|---|---|
committer | simon | 2009-07-16 12:35:30 +0000 |
commit | 404fe6d0c2f7ddc158d8d14a0974ed94287ff9da (patch) | |
tree | ab86bb2f79e172aec8d3fc727c332955e1f7af58 /tests/unit_tests/test_double_Find.sci | |
parent | 0019d6a1d68d0500e0b58a673e187162c222263a (diff) | |
download | scilab2c-404fe6d0c2f7ddc158d8d14a0974ed94287ff9da.tar.gz scilab2c-404fe6d0c2f7ddc158d8d14a0974ed94287ff9da.tar.bz2 scilab2c-404fe6d0c2f7ddc158d8d14a0974ed94287ff9da.zip |
added test for find and corrected the interface
updated INIT_FillSCI2LibCDirs
Diffstat (limited to 'tests/unit_tests/test_double_Find.sci')
-rw-r--r-- | tests/unit_tests/test_double_Find.sci | 31 |
1 files changed, 31 insertions, 0 deletions
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 |