summaryrefslogtreecommitdiff
path: root/tests/unit_tests/testLinearAlgebra/testsqroot/testsqroot.sci
blob: 8e9fe30e6eab46e524f921027b8056ebdf9b0612 (plain)
1
2
3
4
5
function testsqroot()
    a = [1,1,-1;1,2,0;-1,0,5];
    e = sqroot(a);
    disp(e)
endfunction