Difference between revisions of "Error Messages/40636"
AManandhar (talk | contribs) m (→Cause) |
AManandhar (talk | contribs) m (→Cause) |
||
Line 9: | Line 9: | ||
You passed an array with a non numeric value to a functions that expects the parameter to be numeric or an array of numeric values. Function parameters that have been qualified by the [[Function_Parameter_Qualifiers#Numeric|'numeric' qualifier]] expects a numeric value or an array of numeric values, and produces this error on passing a non numeric value. | You passed an array with a non numeric value to a functions that expects the parameter to be numeric or an array of numeric values. Function parameters that have been qualified by the [[Function_Parameter_Qualifiers#Numeric|'numeric' qualifier]] expects a numeric value or an array of numeric values, and produces this error on passing a non numeric value. | ||
− | The following function expects the first parameter, | + | The following function expects the first parameter, num, to be a number and throws this error when an array with a non numeric value is passed to it. |
<code>Function Cube( num: numeric) </code> | <code>Function Cube( num: numeric) </code> |
Revision as of 18:49, 22 January 2010
Error Message Examples
In call to function Cube, the first parameter, num, should be numeric, but the array passed to this parameter contains a non-numeric value at the following coordinate: DoCube='seventeen'
Cause
You passed an array with a non numeric value to a functions that expects the parameter to be numeric or an array of numeric values. Function parameters that have been qualified by the 'numeric' qualifier expects a numeric value or an array of numeric values, and produces this error on passing a non numeric value.
The following function expects the first parameter, num, to be a number and throws this error when an array with a non numeric value is passed to it.
Function Cube( num: numeric)
To learn more about function parameter qualifiers, please click here.
Remedies
Correct the value in the array passed to the function at the specified coordinate to be numeric.
Comments
<comments />
Enable comment auto-refresher