The Museum of HP Calculators


SLOPE for the HP 42S

This program is by Ken Delsnider and is used here by permission.

This program is supplied without representation or warranty of any kind. Ken Delsnider and The Museum of HP Calculators therefore assume no responsibility and shall have no liability, consequential or otherwise, of any kind arising from the use of this program material or any part thereof.

Overview

Program Name SLOPE
Function Use to calculate the Slope between 2 elevations.
Where:
EL1 = Elevation of Point 1
EL2 = Elevation of Point 2
DIST = Distance between Points 1 & 2
SLOPE = Slope between Points 1 & 2

Listing

00 { 58-Byte Prgm }
01>LBL "SLOPE"
02 MVAR "EL1"
03 MVAR "EL2"
04 MVAR "DIST"
05 MVAR "SLOPE"
06 RCL "EL2"
07 RCL "EL1"
08 -
09 RCL "DIST"
10 รท
11 RCL "SLOPE"
12 -
13 END

Go back to the software library
Go back to the main exhibit hall