diff options
author | Brijeshcr | 2017-07-27 18:29:25 +0530 |
---|---|---|
committer | Brijeshcr | 2017-07-27 18:29:25 +0530 |
commit | 4bd28238003609980b66edbd25dae9239a237843 (patch) | |
tree | 49c5f6b3e0bbf1d5ad8f4b432fbb2de5e9e77ffe /tests | |
parent | 07d9e48f562ecdfc20192c0af6cb06a413caf30e (diff) | |
download | Scilab2C_fossee_old-4bd28238003609980b66edbd25dae9239a237843.tar.gz Scilab2C_fossee_old-4bd28238003609980b66edbd25dae9239a237843.tar.bz2 Scilab2C_fossee_old-4bd28238003609980b66edbd25dae9239a237843.zip |
Nanmin and Nanmean added
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit_tests/testLinearAlgebra/testsqroot/testsqroot.sci | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_tests/testLinearAlgebra/testsqroot/testsqroot.sci b/tests/unit_tests/testLinearAlgebra/testsqroot/testsqroot.sci index 63db1f4..8e9fe30 100644 --- a/tests/unit_tests/testLinearAlgebra/testsqroot/testsqroot.sci +++ b/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 |