summaryrefslogtreecommitdiff
path: root/tests/unit_tests/testLinearAlgebra/testspec/testspec.sci
blob: 6e9346d4b9df991093bd1bd963804b46a138ae44 (plain)
1
2
3
4
5
6
7
8
9
function testspec()
    A = [1,2,3;4,5,6;7,8,9]
    B = [10,11,12;13,14,15;16,17,18]
    [R,diagevals,c,d] = spec(A,B)
    disp(R)
    disp(diagevals)
    disp(c)
    disp(d)
endfunction