Difference between revisions of "Error Messages/41027"

(Created page with '= Error Message Examples = In the call to Function Array, the index IndexA is listed more than once. Each indexes passed to Array must all be different. = Cause = An index p…')
 
Line 15: Line 15:
 
= Remedies =
 
= Remedies =
  
Correct the indexes passed to the [[Array]] function so all the indexes are unique. If you want to want to index the array with two indexes with the same dimension, you may want to define the second index by using [[CopyIndex]] and passing the first index to it.
+
Correct the indexes passed to the [[Array]] function so all the indexes are unique. If you want to want to index the array with two indexes with the same dimensions, you may want to define the second index by using [[CopyIndex]] and passing the first index to it.
  
 
<br><comments />
 
<br><comments />

Revision as of 18:43, 12 February 2010

Error Message Examples

In the call to Function Array, the index IndexA is listed more than once.
Each indexes passed to Array must all be different.

Cause

An index passed to the Array function was repeated, which is not allowed as all indexes in an Array must be unique. The following call to Array would trigger this error:

Array( IndexA, IndexB, IndexC, Values);


Remedies

Correct the indexes passed to the Array function so all the indexes are unique. If you want to want to index the array with two indexes with the same dimensions, you may want to define the second index by using CopyIndex and passing the first index to it.



You are not allowed to post comments.

Comments
<comments />