summaryrefslogtreecommitdiff
path: root/2.3-1/tests/unit_tests/testLinearAlgebra/testnorm/testnorm.sci
blob: 727a895faf8182c9d0af385fc86cefcb075b63ab (plain)
1
2
3
4
5
6
//* Function to find, norm(a,2)
function testnorm()
    a = [1,2,3;4,5,6;7,8,9] // Matrix
    d = norm(a,2);          // Calling NORM function.
    disp(d)                 // display output
endfunction