blob: c5da4cd3a202696ca6af2f2aacf72c6c8171bc7e (
plain)
1
2
3
4
5
6
|
function testsvd()
disp(" ** SVD Function (Singular Value Decomposition)** ")
A = [1,2,3,11;4,5,6,12;7,8,9,13] // Matrix - A
s = svd(A) // Calling Function Sequence
disp(s)
endfunction
|