diff options
author | Brijeshcr | 2017-07-27 18:29:25 +0530 |
---|---|---|
committer | Brijeshcr | 2017-07-27 18:29:25 +0530 |
commit | 38a2d24e20e33da84432c068411dae980e32baeb (patch) | |
tree | 8cbfc698361666cbe8f46900d23821cc298792c5 /2.3-1/tests | |
parent | 965e05dc348f796d2741ac7f410bcaff2a3fef56 (diff) | |
download | Scilab2C-38a2d24e20e33da84432c068411dae980e32baeb.tar.gz Scilab2C-38a2d24e20e33da84432c068411dae980e32baeb.tar.bz2 Scilab2C-38a2d24e20e33da84432c068411dae980e32baeb.zip |
Nanmin and Nanmean added
Diffstat (limited to '2.3-1/tests')
-rw-r--r-- | 2.3-1/tests/unit_tests/testLinearAlgebra/testsqroot/testsqroot.sci | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/2.3-1/tests/unit_tests/testLinearAlgebra/testsqroot/testsqroot.sci b/2.3-1/tests/unit_tests/testLinearAlgebra/testsqroot/testsqroot.sci index 63db1f49..8e9fe30e 100644 --- a/2.3-1/tests/unit_tests/testLinearAlgebra/testsqroot/testsqroot.sci +++ b/2.3-1/tests/unit_tests/testLinearAlgebra/testsqroot/testsqroot.sci @@ -1,5 +1,5 @@ function testsqroot() - a = [1,2,3;4,5,6;7,8,9]; + a = [1,1,-1;1,2,0;-1,0,5]; e = sqroot(a); disp(e) endfunction |