HP Forums
formula's with 2 caracter variables - Printable Version

+- HP Forums (https://www.hpmuseum.org/forum)
+-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html)
+--- Forum: HP Prime (/forum-5.html)
+--- Thread: formula's with 2 caracter variables (/thread-6378.html)



formula's with 2 caracter variables - TopQ - 06-08-2016 11:18 AM

Hi I try to get a formula working on my Prime. I cannot find in the user manual how to do it. Any help appreciated.

It keeps giving input syntax errors. I tried to drop the % and even one character variabels but it is not working.


Formula Ceq= %C+((%Mn+%Si)/6)+((%Cr+%Mo+%V)/5)+((%Ni+%Cu)/15)

Just want a list to fill-in the available variables


RE: formula's with 2 caracter variables - salvomic - 06-08-2016 12:52 PM

(06-08-2016 11:18 AM)TopQ Wrote:  Hi I try to get a formula working on my Prime. ...
Formula Ceq= %C+((%Mn+%Si)/6)+((%Cr+%Mo+%V)/5)+((%Ni+%Cu)/15)

try:
Ceq := C+((Mn+Si)/6)+((Cr+Mo+V)/5)+((Ni+Cu)/15)

to assign something to a variable use :=
don't use %


RE: formula's with 2 caracter variables - TopQ - 06-08-2016 01:10 PM

Dear Salvomic

Thank you for your gesture, but Double variables like Mn, Si, etc are giving a sytaxerror. I can change Mn to M and Si to S, But will get problems with C an Cu.

I tried to use a spreadsheet instaid, but as soon I type Si in a cell the complete HP connection program on my PC shuts down due to an error.

Is there a simple way to type a formula and get a list of variables to fill in, or do I have to make a program for it?


RE: formula's with 2 caracter variables - salvomic - 06-08-2016 01:32 PM

I forgot to say that if you are in Home upper case variables are reserved, so the Prime tries to do (i.e.) C*u and you get an error, in command line.
You can use that expression in a program or in CAS (if every variable is defined)...


RE: formula's with 2 caracter variables - TopQ - 06-08-2016 05:54 PM

Thank you. that solved the problem