blob: 9a3a50a6f65c6d35e8a5c55d8967599364b8e3c6 (
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
|