Difference between revisions of "IdentPred"

(some details about this name IdentPred)
Line 9: Line 9:
 
== The name IdentPred ==
 
== The name IdentPred ==
  
The name [[IdentPred]] appears in the Analytica namespace as if it were a built-in system function. However, there is no function calling syntax for invoking this using the name IdentPred.  As an Analytica user, you will seldom see this identifier unless you start poking around in the internals. Internally, the object named [[IdentPred]] is a placeholder for this function, which gets invoked by the engine like other built-in functions to. You should never use the identifier [[IdentPred]] directly in your code.
+
The name [[IdentPred]] appears in the Analytica namespace as if it were a built-in system function. However, there is no function calling syntax for invoking this using the name IdentPred.  As an Analytica user, you will seldom see this identifier unless you start poking around in the internals. Internally, the object named [[IdentPred]] is a placeholder for this operator, which gets invoked by the engine like other built-in functions to. You should never use the identifier [[IdentPred]] directly in your code.
  
 
== See also ==
 
== See also ==
  
 
* [[Subscript/Slice_Operator|Slice operator]], <code>x[@Time=@Time-n]</code>
 
* [[Subscript/Slice_Operator|Slice operator]], <code>x[@Time=@Time-n]</code>

Revision as of 20:09, 14 August 2015


x[Time-n]

x[Time-n] is used inside a Dynamic() function to refer to a previous time period, «n» steps back along Time. When used in Dynamic[J]() along the dynamic index J, you would use x[J-n].

This is synonymous with the slice expression x[@Time=Time-n].

The name IdentPred

The name IdentPred appears in the Analytica namespace as if it were a built-in system function. However, there is no function calling syntax for invoking this using the name IdentPred. As an Analytica user, you will seldom see this identifier unless you start poking around in the internals. Internally, the object named IdentPred is a placeholder for this operator, which gets invoked by the engine like other built-in functions to. You should never use the identifier IdentPred directly in your code.

See also

Comments


You are not allowed to post comments.