Difference between revisions of "Error Messages/40412"

(Created page with '= Error Message Examples = In SingularValueDecomp, index Index3 must be the same length as index Index2. = Cause = The indexes passed as the third and fourth parameter to…')
 
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
= Error Message Examples =
+
[[Category: Error messages]]
  
In [[SingularValueDecomp]], index Index3 must be the same length as index Index2.
+
== Error message examples ==
  
= Cause =
+
:<code>''In SingularValueDecomp, index Index3 must be the same length as index Index2.''</code>
 +
 
 +
== Cause ==
  
 
The indexes passed as the third and fourth parameter to [[SingularValueDecomp]] did not have the same length.
 
The indexes passed as the third and fourth parameter to [[SingularValueDecomp]] did not have the same length.
  
 +
The [[SingularValueDecomp|SingularValueDecomp(a, i, j, j2)]] function decomposes the passed matrix, «a», to matrices U.W.V. <br>
 +
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)''
  
 +
== Remedies ==
  
You may have switched the second and the third parameter to the function.
+
Correct the fourth parameter, «j2», passed to the [[SingularValueDecomp]] function so that its length is equal to the length of the third parameter, «j».
 
 
= Remedies =
 
 
 
Correct the parameters passed to the [[SingularValueDecomp]] function so that the length of the second parameter (number of rows of the matrix) is at least as long as the length of the third parameter (number of columns of the matrix).
 
  
<br><comments />
+
==See Also==
 +
* [[Arrays and Indexes]]
 +
* [[Function calls and parameters]]
 +
* [[SingularValueDecomp]]
 +
* [[Size]]

Latest revision as of 00:23, 29 March 2016


Error message examples

In SingularValueDecomp, index Index3 must be the same length as index Index2.

Cause

The indexes passed as the third and fourth parameter to SingularValueDecomp did not have the same length.

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)

Remedies

Correct the fourth parameter, «j2», passed to the SingularValueDecomp function so that its length is equal to the length of the third parameter, «j».

See Also

Comments


You are not allowed to post comments.