Error Messages/41043
< Error Messages
Revision as of 00:47, 16 February 2010 by AManandhar (talk | contribs) (Created page with '= Error Message Examples = The second and third parameters of SingularValueDecomp specify the same index. They must specify two different indexes. = Cause = The [[Singul…')
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) 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.
Comments
<comments />
Enable comment auto-refresher