Integral: Difference between revisions

From NARS2000
Jump to navigationJump to search
(Created page with "<table border="1" cellpadding="5" cellspacing="0" rules="none" summary=""> <tr> <td> <table border="0" cellpadding="5" cellspacing="0" summary=""> <tr> <td val...")
 
No edit summary
Line 4: Line 4:
     <table border="0" cellpadding="5" cellspacing="0" summary="">
     <table border="0" cellpadding="5" cellspacing="0" summary="">
     <tr>
     <tr>
       <td valign="top"><apll>Z←{L} f<span style="font-family:APL385 Unicode;">∫</span> R</apll></td>
       <td valign="top"><apll>Z←{L} f<_sg/> R</apll></td>
       <td></td>
       <td></td>
       <td></td>
       <td></td>
       <td>returns the Integral of the function <apll>f</apll> between the points <apll>L</apll> and <apll>R</apll>.</td>
       <td>returns the definite Integral of the function <apll>f</apll> between the points <apll>L</apll> and <apll>R</apll>.</td>
     </tr>
     </tr>
     </table>
     </table>

Revision as of 23:46, 10 January 2020

Z←{L} f R returns the definite Integral of the function f between the points L and R.
L is an optional numeric singleton which represents the lower bound of the definite Integral. If it is omitted, 0 is used.
R is a numeric singleton which represents the upper bound of the definite Integral.
f is an arbitrary monadic function.


Introduction