Difference between revisions of "Error Messages/42352"
(Created page with '= Error Text = :The parameters of Function ''Table'' cannot be identified by name when using Function ParsedExprParameter. = Cause = There are a couple built-in Analyt…') |
m |
||
Line 1: | Line 1: | ||
= Error Text = | = Error Text = | ||
− | :The parameters of Function ''[[Table]]'' cannot be identified by name when using Function [[ | + | :The parameters of Function ''[[Table]]'' cannot be identified by name when using Function [[ParsedExprParameters]]. |
= Cause = | = Cause = | ||
Line 9: | Line 9: | ||
[[Table]](I:Part) | [[Table]](I:Part) | ||
− | The error you are seeing here occurs when you try to obtain the parameter passed to such a function using [[ | + | The error you are seeing here occurs when you try to obtain the parameter passed to such a function using [[ParsedExprParameters]]. |
= Remedy = | = Remedy = | ||
− | For the handful of functions that do not support the named-parameter syntax, you must access the parsed parameters by position, by specifying a number as the second parameter to [[ | + | For the handful of functions that do not support the named-parameter syntax, you must access the parsed parameters by position, by specifying a number as the second parameter to [[ParsedExprParameters]]. |
Revision as of 21:22, 22 March 2010
Error Text
- The parameters of Function Table cannot be identified by name when using Function ParsedExprParameters.
Cause
There are a couple built-in Analytica functions that do not support the named-parameter syntax. One example is the Table function. These functions have no internal names stored for each parameter, so you can't call these using a syntax such as:
Table(I:Part)
The error you are seeing here occurs when you try to obtain the parameter passed to such a function using ParsedExprParameters.
Remedy
For the handful of functions that do not support the named-parameter syntax, you must access the parsed parameters by position, by specifying a number as the second parameter to ParsedExprParameters.
Comments
Enable comment auto-refresher