<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>