Difference between revisions of "Error Messages/40674"
AManandhar (talk | contribs) (→Cause) |
|||
Line 1: | Line 1: | ||
− | + | [[Category: Error messages]] | |
− | When the fourth parameter, | + | == Error message examples == |
− | to | + | |
+ | <pre style="background:white; border:white; margin-left: 1em; font-style:italic"> | ||
+ | When the fourth parameter, «I», to Function StepInterp is not specified, the array parameters | ||
+ | to StepInterp must have exactly one index in common. However, in this call, there is more than | ||
one index shared by the array parameters, so that implied index is ambiguous. It is recommended that | one index shared by the array parameters, so that implied index is ambiguous. It is recommended that | ||
− | you declare the index parameter, | + | you declare the index parameter, «I», explicitly, which will avoid this ambiguity. |
+ | </pre> | ||
− | = Cause = | + | == Cause == |
You are calling a function that expects two arrays that have a common index. You have called the function by passing two arrays with more than one index in common. If the arrays being passed have more than one index in common you need to specify the common index you want the function to operate over. | You are calling a function that expects two arrays that have a common index. You have called the function by passing two arrays with more than one index in common. If the arrays being passed have more than one index in common you need to specify the common index you want the function to operate over. | ||
− | = Remedies = | + | == Remedies == |
Specify the common index of the passed arrays that you want the function to operate over. | Specify the common index of the passed arrays that you want the function to operate over. | ||
− | + | ==See Also== | |
+ | * [[Function calls and parameters]] | ||
+ | * [[Interpolation functions]] | ||
+ | * [[Arrays and Indexes]] | ||
+ | * [[StepInterp]] |
Latest revision as of 19:36, 4 April 2016
Error message examples
When the fourth parameter, «I», to Function StepInterp is not specified, the array parameters to StepInterp must have exactly one index in common. However, in this call, there is more than one index shared by the array parameters, so that implied index is ambiguous. It is recommended that you declare the index parameter, «I», explicitly, which will avoid this ambiguity.
Cause
You are calling a function that expects two arrays that have a common index. You have called the function by passing two arrays with more than one index in common. If the arrays being passed have more than one index in common you need to specify the common index you want the function to operate over.
Remedies
Specify the common index of the passed arrays that you want the function to operate over.
See Also
Comments
Enable comment auto-refresher