Namir, Byte and REXX
|
09-07-2018, 11:32 AM
Post: #1
|
|||
|
|||
Namir, Byte and REXX
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... :) Greetings, Massimo -+×÷ ↔ left is right and right is wrong |
|||
09-08-2018, 06:34 PM
Post: #2
|
|||
|
|||
RE: Namir, Byte and REXX
BYTE
Ahhhhh ......Great magazine , brings back memories |
|||
09-09-2018, 05:36 AM
Post: #3
|
|||
|
|||
RE: Namir, Byte and REXX
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. |
|||
09-09-2018, 10:34 AM
Post: #4
|
|||
|
|||
RE: Namir, Byte and REXX
(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. Greetings, Massimo -+×÷ ↔ left is right and right is wrong |
|||
09-10-2018, 12:11 PM
(This post was last modified: 09-10-2018 12:12 PM by toml_12953.)
Post: #5
|
|||
|
|||
RE: Namir, Byte and REXX
(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. Tom L Cui bono? |
|||
09-10-2018, 12:14 PM
(This post was last modified: 09-10-2018 12:15 PM by toml_12953.)
Post: #6
|
|||
|
|||
RE: Namir, Byte and REXX
(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. Tom L Cui bono? |
|||
09-10-2018, 12:52 PM
Post: #7
|
|||
|
|||
RE: Namir, Byte and REXX | |||
09-10-2018, 01:26 PM
Post: #8
|
|||
|
|||
RE: Namir, Byte and REXX
(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:
Greetings, Massimo -+×÷ ↔ left is right and right is wrong |
|||
09-10-2018, 03:07 PM
Post: #9
|
|||
|
|||
RE: Namir, Byte and REXX | |||
09-10-2018, 04:00 PM
Post: #10
|
|||
|
|||
RE: Namir, Byte and REXX
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 |
|||
09-11-2018, 12:35 PM
Post: #11
|
|||
|
|||
RE: Namir, Byte and REXX
(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! Tom L Cui bono? |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)