Post Reply 
Script file for NewRPL
07-28-2021, 04:11 AM (This post was last modified: 07-28-2021 04:19 AM by compsystems.)
Post: #1
Script file for NewRPL
Hello

Calculators of nowdays are based on independent input and output lines, or program execution.

Why not create a new way to read and run statement scripts?

In hp-prime I can create a script, but I cannot store or export the sequence as a text file.
[Image: quadraticform_scriptcas_image01.png]

Xcas can do it export as and import text (script) file .

[Image: xcas_export.png]

I want to see the possibility of a script file for newRPL in RPN syntax, by now with a numeric engine.

The following link shows script in the hp-prime
https://www.hpmuseum.org/forum/thread-16...light=xcas
PHP Code:
(a*x^2+b*x+c) = 0
    
Ans*4*a;      
    
expand(Ans);    
    
Ans+b^2;      
    
Ans-4*a*c;    
    
simplify(Ans); 
    
factor(Ans);   
    
(Ans);       
    
subst(Ans,'abs'nop); 
    
Ans-b;          
    
simplify(Ans);
    
Ans/(2*a);    
    
simplify(Ans);  
    
expr(replace(string(Ans),"-b+","-b-")); 
Find all posts by this user
Quote this message in a reply
07-29-2021, 03:01 PM
Post: #2
RE: Script file for NewRPL
An RPL program is a script of the steps you take to solve the problem.
I think you mean capturing keypresses to generate a program with the input? Could be done but I don't see a big need for it because RPL is so close to the keystrokes you need to do anyway.
Find all posts by this user
Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)