HP Forums
Clarification on HP-35S Derivative program, please - 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: Clarification on HP-35S Derivative program, please (/thread-19051.html)



Clarification on HP-35S Derivative program, please - Matt Agajanian - 10-31-2022 01:09 AM

Hi all.

In an earlier post:

HP-35S Calculating Derivatives

the listing is a little unclear.

LBL D
INPUT X
STO C
-->XEQ 001 (what label is the branch target)
STO F
(EQN) 1E-10
STO D
STO+X
X<>Y
XEQ F001
RCL -F
RCL /D
R up
RCL -D
STO X
R down
XEQ F 001
RCL -F
RCL /D
+/-
X<>Y
RTN
STO A
RCL xC
+/-
RCL +F
STO B
RCL A
+/-
1/X
STO E
RCL xC
R up
-
+/-
STO G
(EQN) [A,B]
STO D
(EQN) [E,G]
STO F
RCL D
RCL F
RTN


RE: Clarification on HP-35S Derivative program, please - Thomas Klemm - 10-31-2022 01:55 AM

That should be:
Code:
XEQ F001
As in the lines bellow.
It evaluates the function F.


RE: Clarification on HP-35S Derivative program, please - Matt Agajanian - 10-31-2022 02:28 AM

(10-31-2022 01:55 AM)Thomas Klemm Wrote:  That should be:
Code:
XEQ F001
As in the lines bellow.
It evaluates the function F.

Thanks for the note.

Appreciated.