HP Forums
HP50G Algebraic object multiply by variable - Printable Version

+- HP Forums (https://www.hpmuseum.org/forum)
+-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html)
+--- Forum: General Forum (/forum-4.html)
+--- Thread: HP50G Algebraic object multiply by variable (/thread-18852.html)



HP50G Algebraic object multiply by variable - royc - 09-21-2022 03:38 AM

Hi all,

I am new user of HP50G from HP48SX, and now having error when transferring program to HP50G, hop anyone can help to see what's wrong with the following program.

Example :

Work on HP48SX
<< 5 'X' * >> ---> '5*X'

HP50G
<< 5 'X' * >> ---> * Error: Undefined Name

Do I need to set some flags or mode?

Thank You
Roy


RE: HP50G Algebraic object multiply by variable - Gjermund Skailand - 09-21-2022 12:19 PM

Hi, see if this helps:


It seems 'X' is undefined.
Try Mode, Flags, uncheck system flag 3

system flag 3 set --> "Function --> num" require that EVAL can result in a numerical value.
system flag 3 unset will allow for returning a symbolic

br Gjermund


RE: HP50G Algebraic object multiply by variable - royc - 09-22-2022 10:03 AM

(09-21-2022 12:19 PM)Gjermund Skailand Wrote:  Hi, see if this helps:


It seems 'X' is undefined.
Try Mode, Flags, uncheck system flag 3

system flag 3 set --> "Function --> num" require that EVAL can result in a numerical value.
system flag 3 unset will allow for returning a symbolic

br Gjermund

Hi Gjermund,

Thanks for your advise. It solved my problem.