
— 8 —
5. ERROR MESSAGE
Meaning
1Calculation formula contains an error.
2Formula in a program contains an
error.
1Calculation result exceeds calcula-
tion range.
2Calculation is outside the input range
of a function.
3Illogical operation (division by zero,
etc.)
4Poor precision in differential calcula-
tion results.
1No corresponding Lbl nfor Goto n.
2No program stored in program area
Prog “file name”.
3No corresponding “Next” for “For”, no
corresponding “LpWhile” for “Do”, or
no corresponding “whileEnd” for
“While”.
• Nesting of subroutines exceeds 10
levels.
• Execution of calculations that exceed
the capacity of the stack for numeric
values or stack for commands.
Message
Syn ERROR
Ma ERROR
Go ERROR
Ne ERROR
Stk ERROR
Countermeasure
1Use or to display the point
where the error was generated and
correct it.
2Use or to display the point
where the error was generated and
then correct the program.
123
Check the input numeric value and
correct it.
When using memories, check that the
numeric values stored in memories
are correct.
4Try using a smaller value for ∆x
(xincrement/decrement).
1Correctly input a Lbl ntocorrespond to
the Goto n, or delete the Goto nif not
required.
2Store a program in program area Prog
“file name”, or delete the Prog “file
name” if not required.
3Correctly match “Next” with “For”,
“LpWhile” with “Do”, or “whileEnd”
with “While”.
• Ensure that Prog “file name” is not
used to return from subroutines to
main routine. If used, delete any un-
necessary Prog “file name”.
• Trace the subroutine jump destina-
tions and ensure that no jumps are
made back to the original program
area. Ensure that returns are made
correctly.
• Simplify the formulas to keep stacks
within 10 levels for the numeric values
and 26 levels for the commands.
• Divide the formula into two or more
parts.