HP Forums
HP35S flag 11 not working - 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: HP35S flag 11 not working (/thread-12247.html)



HP35S flag 11 not working - John Colvin - 01-22-2019 06:01 AM

The SF 11 command that sets flag 11 on my 35s has for some reason stopped
working. It is used to prompt for variables in an equation when used with
SOLVE. I am using it in conjunction with the F= key. Here is a simple example

LABEL H
SF 11
A = PI * R^2
RTN

After F= H and then SOLVE R, I should get a prompt for A but the SF 11
instruction is ignored and the program goes directly to the equation.
The thing is that the function worked properly the first few times I tested it,
prompting for the variable A, but then it mysteriously stopped working. Does
anyone have any ideas what is happening? The program works fine in the
35s emulator.


RE: HP35S flag 11 not working - Dieter - 01-22-2019 08:56 AM

(01-22-2019 06:01 AM)John Colvin Wrote:  After F= H and then SOLVE R, I should get a prompt for A but the SF 11
instruction is ignored and the program goes directly to the equation.

What does this mean, it "goes directly to the equation"?
Do you see "A=πxR^2" instead of a prompt? Then clear flag 10: CF 10.

Just a guess. ;-)

Dieter


RE: HP35S flag 11 not working - John Colvin - 01-22-2019 06:26 PM

Thanks Dieter, that was the problem. Apparently SF 10 does not automatically
clear when used in a program upon return like SF 11 does. I need to be sure to
add CF 10 in my programs that use SF 10.