Artifact 57c3394d6b61fe6a61b333216843236a195ab6d30cb134ae51a3fb3ffc7653c7:
- Executable file
r37/lisp/csl/html/r37_0256.html
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 969) [annotate] [blame] [check-ins using] [more...]
<A NAME=EXP> <TITLE>EXP</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>EXP</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> The <em>exp</em> operator returns <em>e</em> raised to the power of its argument . <P> <H3> syntax: </H3> <P> <P> <em>exp</em>(<expression>) or <em>exp</em> <simple\_expression> <P> <P> <P> <expression> can be any valid REDUCE scalar expression. <simple\_expression> must be a single identifier or begin with a prefix operator. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> exp(sin(x)); SIN X E exp(11); 11 E on rounded; exp sin(pi/3); 2.37744267524 </TT></PRE><P>Numeric values are returned only when <em>rounded</em> is on. The single letter <em>e</em> with the exponential operator <em>^</em> or <em>**</em> may be substituted for <em>exp</em> without change of function. <P> <P> <P>