summaryrefslogtreecommitdiff
path: root/2.3-1/tests/unit_tests/testLinearAlgebra/testsqroot
diff options
context:
space:
mode:
Diffstat (limited to '2.3-1/tests/unit_tests/testLinearAlgebra/testsqroot')
-rw-r--r--2.3-1/tests/unit_tests/testLinearAlgebra/testsqroot/testsqroot.sci2
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