Quote:
First, are there "hidden" global labels? I.e. a way to create a global label that can be called from a program, but does not appear with XEQ?
No.
Quote:
Second, is there a way to organize global labels in the XEQ list?
No, the global labels appear in the catalog in the order in which they appear in program memory, from last to first. There is no control over this, no grouping or reordering like on the RPL machines.
Quote:
The challenge I face with a program I am writing is that my program front-ends the solver and PGMSLV requires a global label. Now I have many global labels that have limited use outside of this program.
That's life on the HP-42S... There are ways to ameliorate the problem, though. You can use one global label for multiple functions; if you combine all the functions you want to be able to solve into one program, using a variable to select between them, then you can use one single global label as the entry point for all of them, thus reducing global label clutter at the expense of some obfuscation in your program:
LBL "FCNS"
MVAR "X"
GTO IND "SEL" <-- selects which function to execute
LBL 00
1
RCL "X"
RCL/ "C"
X^2
-
SQRT
1/X
RCL- "D"
RTN
LBL 01
...
RTN
LBL 02
...
END
Using only one global label has the disadvantage that you're stuck with the same set of MVARs for all the sub-functions, but since you were talking about running the solver under program control, I'm guessing that's not a problem.
- Thomas