Difference between revisions of "Error Messages/40603"
AManandhar (talk | contribs) (Created page with '= Error Message Examples = The offset in an expression of the form ident[Time-k], the Time position indicated is beyond the range of the Time index. = Cause = The value of t…') |
AManandhar (talk | contribs) m |
||
Line 7: | Line 7: | ||
The value of the offset, k, causes the Time index for the identifier to be outside the Time range. | The value of the offset, k, causes the Time index for the identifier to be outside the Time range. | ||
− | This | + | This following definition for the Dynamic_node will trigger this error:<br> |
<code>Time := 1..5;<br> | <code>Time := 1..5;<br> | ||
Dynamic_node := Dynamic( 100, Dynamic_node[Time - 2] * 0.9 ); | Dynamic_node := Dynamic( 100, Dynamic_node[Time - 2] * 0.9 ); | ||
</code> | </code> | ||
+ | <br><br> | ||
+ | Note. At Time=2 in the dynamic function, the Time position is not defined. | ||
= Remedies = | = Remedies = |
Revision as of 23:55, 20 January 2010
Error Message Examples
The offset in an expression of the form ident[Time-k], the Time position indicated is beyond the range of the Time index.
Cause
The value of the offset, k, causes the Time index for the identifier to be outside the Time range.
This following definition for the Dynamic_node will trigger this error:
Time := 1..5;
Dynamic_node := Dynamic( 100, Dynamic_node[Time - 2] * 0.9 );
Note. At Time=2 in the dynamic function, the Time position is not defined.
Remedies
Comments
<comments />
Enable comment auto-refresher