(11C/12C/17B/65) Base Conversion
|
01-19-2014, 06:45 PM
(This post was last modified: 02-23-2024 12:12 PM by Thomas Klemm.)
Post: #1
|
|||
|
|||
(11C/12C/17B/65) Base Conversion
Description:
This program allows to convert numbers from one base to another. Register: Reg 1: from-base Reg 2: to-base Program: STO 0 RCL 1 RCL 2 - x<>y LBL 0 RCL 1 x<>y RCL 2 ÷ INT x=0 GTO 1 R↓ × R↓ × STO + 0 R↓ GTO 0 LBL 1 RCL 0 Examples: Dec - Bin Reg 1: 10 Reg 2: 2 21 - 10101 Hex - Dec Reg 1: 16 Reg 2: 100 0xCAFE = 12:10:15:14 12101514 - 51966 |
|||
06-21-2014, 10:21 PM
(This post was last modified: 06-21-2014 11:02 PM by Thomas Klemm.)
Post: #2
|
|||
|
|||
Base Conversion for HP-12C
Code: 01 - 44 0 STO 0 Example: 201410 → 37368 10 STO 1 8 STO 2 2014 R/S This is another solution that uses the function NPV: Code: 01 - 36 ENTER Example: 201410 → 37368 10 STO PMT 8 STO FV 2014 R/S |
|||
06-21-2014, 10:27 PM
Post: #3
|
|||
|
|||
Base Conversion for HP-17b/17bii
BC:ANS=
N+ (FROM-TO)\(\times\) \(\Sigma\)(I:0:LOG(N)\(\div\)LOG(TO):1: L(N:IDIV(N:TO))\(\times\)FROM^I ) Example: DEC → OCT Code: 2014 10 → FROM 8 → TO 2014 → N ANS |
|||
02-23-2024, 12:10 PM
(This post was last modified: 02-24-2024 04:20 AM by Thomas Klemm.)
Post: #4
|
|||
|
|||
Base Conversion for HP-65
Code: 001: 23 : LBL Code: Title: Base Conversion Registers R1: n R2: from R3: to Examples Base conversion between 40 and 100. Initialization 40 STO 2 100 STO 3 Encoding 1503243917 A 38631977 Decoding B 38631977 A 1503243917 References |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)