let us consider following model
according to following link
http://www4.ncsu.edu/~ipsen/REU09/chapter4.pdf
it says that :
The singular values are unique, but the singular vector matrices are not
it was shown also in this simulink simulation,in matlab command place i have got following result
A=[2 1 3;1 4 5]
A =
2 1 3
1 4 5
>> [U E V]=svd(A)
U =
-0.4719 -0.8817
-0.8817 0.4719
E =
7.2965 0 0
0 1.6617 0
V =
-0.2502 -0.7772 -0.5774
-0.5480 0.6053 -0.5774
-0.7982 -0.1720 0.5774
simulink shows me same singular values,but singular vectors are different in sign compare to calculation by hand.now if i will use result given by simulink in some statistical analysis,does it give me different result then usage of result given by hand calculation? thanks in advance