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