summaryrefslogtreecommitdiff
path: root/tests/unit_tests/testLinearAlgebra/testrowcomp/testrcomp.sci
blob: f8da948288c44a307dc6525dc9e11c855d308bcf (plain)
1
2
3
4
5
6
function testrcomp()
    A = [1,2,3;4,5,6]
    [u,rk] = rowcomp(A,"qr")
    disp(u)
    disp(rk)
endfunction