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
The singular vectors may differ in sign, as the algorithm used to compute them is iterative and there is no guarantee that you will get the singular values in the same order, or if their sign is different. Note that the decomposition $A = U\Sigma V^*$ will be the same if we multiply a factor of $-1$ to $U$ and $V$:
$$A = U\Sigma V^* = (-1)^2U \Sigma V^* = (-U)\Sigma (-V)^*.$$
Nevertheless, this should not affect your use of these singular vectors, as they still span the same vector space regardless of the parity.