Error Messages/40647

< Error Messages
Revision as of 01:45, 22 January 2010 by AManandhar (talk | contribs) (Created page with '= Error Message Examples = In the call to matrix Function Invert, the same index, Index_A, was specified for both matrix dimensions. The specified matrix must have two differe…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Error Message Examples

In the call to matrix Function Invert, the same index, Index_A, was specified for both matrix dimensions.
The specified matrix must have two different dimensions.

Cause

You passed the same index to specify both the matrix dimensions. E.g. Invert( Matrix, Index_A, Index_A) would trigger this error as the index, Index_A, was repeated.

A matrix cannot be indexed by the same index more than once.

Remedies

Correct the parameters passed to the function by passing the indexes indexing your matrix.

E.g. Invert( Matrix, Index_A, Index_B) would correct the function call for a matrix indexed by Index_A and Index_B.




You are not allowed to post comments.

Comments
<comments />