Namir, Byte and REXX - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: Not HP Calculators (/forum-7.html) +--- Forum: Not remotely HP Calculators (/forum-9.html) +--- Thread: Namir, Byte and REXX (/thread-11355.html) |
Namir, Byte and REXX - Massimo Gnerucci - 09-07-2018 11:32 AM A blast from the past. While browsing a 1996 backup of an old computer of mine, I found a directory with my dabbling exercises in Personal REXX 2.0 in the late 80ies. And, lo and behold, there I found some examples - bundled with the program - from Namir's review of the product on BYTE. Here's one: Code:
Serendipity... :) RE: Namir, Byte and REXX - Zaphod - 09-08-2018 06:34 PM BYTE Ahhhhh ......Great magazine , brings back memories RE: Namir, Byte and REXX - Duane Hess - 09-09-2018 05:36 AM Holy cow! Used to manage a VM/ESA system. Used EXEC2 & REXX a lot. Often wrote my own quick & dirty stuff in REXX. Always impressed me between REXX and XEDIT/macros the amount of power you could have; realatively easily. Is Personal REXX still available? Wouldn't mind a full(er) version of XEDIT that ran under Windows or DOS also. Guess I could search. How often I missed the VM system; though somewhat perculiar it was. RE: Namir, Byte and REXX - Massimo Gnerucci - 09-09-2018 10:34 AM (09-09-2018 05:36 AM)Duane Hess Wrote: Holy cow! I started on VM/CMS and VM EXEC. (09-09-2018 05:36 AM)Duane Hess Wrote: Is Personal REXX still available? Wouldn't mind a full(er) version of XEDIT that ran under Windows or DOS also. Guess I could search. You could try Regina REXX or Open Object REXX. Regarding XEDIT, there's KEDIT (but hurry up, if you really want it ;) ) (09-09-2018 05:36 AM)Duane Hess Wrote: How often I missed the VM system; though somewhat perculiar it was. I loved it too. RE: Namir, Byte and REXX - toml_12953 - 09-10-2018 12:11 PM (09-09-2018 10:34 AM)Massimo Gnerucci Wrote: You could try Regina REXX or Open Object REXX. I just sent the company an email asking them to release it to the Public Domain. Many other companies have done this when they stopped selling software. There's a benefit for hobbyists and no downside for the company. RE: Namir, Byte and REXX - toml_12953 - 09-10-2018 12:14 PM (09-07-2018 11:32 AM)Massimo Gnerucci Wrote: A blast from the past. Has anyone tried to run this in Regina REXX? I get an error: Code: Enter expression (of variable X) Of course I haven't run REXX since my OS/2 days so I may be entering the data wrong. RE: Namir, Byte and REXX - Thomas Klemm - 09-10-2018 12:52 PM (09-10-2018 12:14 PM)toml_12953 Wrote: Has anyone tried to run this in Regina REXX? I get an error: I assume you have to write that expression as: Code: 2*x**2+3*x-12 Cheers Thomas RE: Namir, Byte and REXX - Massimo Gnerucci - 09-10-2018 01:26 PM (09-10-2018 12:14 PM)toml_12953 Wrote: Has anyone tried to run this in Regina REXX? I get an error: Thomas is right (as usual...) Code:
RE: Namir, Byte and REXX - Geoff - 09-10-2018 03:07 PM (09-08-2018 06:34 PM)Zaphod Wrote: BYTE Always loved BYTE. What would Jerry Pournelle have to say about current computers? Geoff RE: Namir, Byte and REXX - Thomas Klemm - 09-10-2018 04:00 PM We can use the Complex-Step Derivative Approximation mentioned in Derivatives on HP 42S to calculate with a single subroutine call both \(f(x)\) and \(f'(x)\) in Newton's method: \(x_{n+1}=x_{n}-{\frac {f(x_{n})}{f'(x_{n})}}\) Code: 00 { 34-Byte Prgm } For the equation \(2x^2+3x-12=0\) of the given example this program can be used: Code: 00 { 19-Byte Prgm } Initialisation 1E-8 STO "h" Iteration 5 XEQ "NEWTON" y: 2.30434782609 x: 2.69565217391 R/S y: 0.77053902071 x: 1.92511315320 R/S y: 1.10972947392E-1 x: 1.81414020581 R/S y: 2.40138878229E-3 x: 1.81173881703 R/S y: 1.12553786619E-6 x: 1.81173769149 R/S y: 2.47260969077E-13 x: 1.81173769149 Cheers Thomas RE: Namir, Byte and REXX - toml_12953 - 09-11-2018 12:35 PM (09-10-2018 12:52 PM)Thomas Klemm Wrote:(09-10-2018 12:14 PM)toml_12953 Wrote: Has anyone tried to run this in Regina REXX? I get an error: Thank you! The exponentiation symbol (**) had dropped from my memory entirely! |