Post Reply 
? RPL/HP-48 - numerical S on a << >> integrand ?
08-05-2021, 01:27 PM
Post: #2
RE: ? RPL/HP-48 - numerical S on a << >> integrand ?
(08-05-2021 12:52 PM)OlidaBel Wrote:  In RPL, is there a way to integrate (S) on a program <<...>> integrand ? I don't think so,
Something like this :
0
1
<<X SIN X SQ - >>
'X'
S
where the legal way to integrate is :
0
1
'SIN(X)-SQ(X)'
'X'
S

a program gives sometimes more flexibility to build a function to integrate.

Try writing the program as a "user-defined function" which means storing the argument(s) in local variable(s) like this:

<< -> X << X SIN X SQ - >> >>
or
<< -> X 'SIN(X)-X^2' >>

RPL treats programs like that more like built-in functions when solving, graphing, and so on, so it might help here too.

<0|ΙΈ|0>
-Joe-
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: ? RPL/HP-48 - numerical S on a << >> integrand ? - Joe Horn - 08-05-2021 01:27 PM



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