RxMathFn: Difference between revisions
Appearance
Created page with "==Description== RxMathFn. Basic Mathematic Functions for use with OS/2 REXX. ==Download== * [http://cd.textfiles.com/swexplorer/disk3/A070/RXMATH.ZIP OS/2 2.0 Rexx Math Funct..." |
mNo edit summary |
||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
RxMathFn. Basic Mathematic Functions for use with OS/2 REXX. | RxMathFn. Basic Mathematic Functions for use with OS/2 REXX. | ||
==Functions== | ==Functions== | ||
*cos(x) - cosine of x | |||
*sin(x) - sine of x | |||
*tan(x) - tangent of x | |||
*acos(x) - arc cosine of x | |||
*asin(x) - arc sine of x | |||
*atan(x) - arc tangent of x | |||
*cosh(x) - hyperbolic cosine of x | |||
*sinh(x) - hyperbolic sine of x | |||
*tanh(x) - hyperbolic tangent of x | |||
*ceil(x) - smallest integer >= x | |||
*floor(x) - largest integer <= x | |||
*exp(x) - e to the power x | |||
*log(x) - natural logarithm of x | |||
*log10(x) - base 10 logarithm of x | |||
*sqrt(x) - square root of x | |||
*pow(x,y) - x to the power y | |||
*pi() - value of ''π'' | |||
*e() - value of ''e'' | |||
==Files== | ==Files== | ||
* | * [[RXMATHFN.DLL]] | ||
==License== | ==License== | ||
* | *Freeware. IBM License Agreement for OS/2 Tools | ||
*Author: [[Patrick J. Mueller]] | |||
== | ==Links== | ||
* | * [http://cd.textfiles.com/swexplorer/disk3/A070/RXMATH.ZIP OS/2 2.0 Rexx Math Function Package - RxMathFn] | ||
[[Category: | [[Category:REXX Function Library]][[Category:IBM EWS]] |
Latest revision as of 01:38, 11 February 2020
RxMathFn. Basic Mathematic Functions for use with OS/2 REXX.
Functions
- cos(x) - cosine of x
- sin(x) - sine of x
- tan(x) - tangent of x
- acos(x) - arc cosine of x
- asin(x) - arc sine of x
- atan(x) - arc tangent of x
- cosh(x) - hyperbolic cosine of x
- sinh(x) - hyperbolic sine of x
- tanh(x) - hyperbolic tangent of x
- ceil(x) - smallest integer >= x
- floor(x) - largest integer <= x
- exp(x) - e to the power x
- log(x) - natural logarithm of x
- log10(x) - base 10 logarithm of x
- sqrt(x) - square root of x
- pow(x,y) - x to the power y
- pi() - value of π
- e() - value of e
Files
License
- Freeware. IBM License Agreement for OS/2 Tools
- Author: Patrick J. Mueller