MATLAB: Undefined function ‘SVD’ for input arguments of type ‘double’.

MATLAB

H=randn(4);
[U,S,V]=SVD(H);
what is the error? how can i rectify it?

Best Answer

It is svd, not SVD.
H=randn(4);
[U,S,V]=svd(H)