Error Messages/41043
Error message examples
The second and third parameters of SingularValueDecomp specify the same index. They must specify two different indexes.
Cause
The SingularValueDecomp(A, i, j, j2) function decomposes the passed matrix, «A», to matrices U.W.V where, U is indexed by «i» and «j», W is a diagonal matrix indexed by «j» and «j2» and V is indexed by «j» and «j2», and size(i) > size(j) and size(j) = size(j2).
You have passed the same index as the second and third parameter. The second and third index parameter must be the indexes of the matrix passed to the SingularValueDecomp function and cannot be the same index as it is not possible to index more than one dimension with the same index.
Remedies
Pass the two indexes indexing the matrix passed as the first parameter to the SingularValueDecomp function as the second and third parameter.
See Also
Comments
Enable comment auto-refresher