Artifact d6d1e6a3bb6faeddd1cda8d2adc8ac0d6866bfd7911bcb34adb8624df5c4ff90:
- Executable file
r37/lisp/csl/html/r37_0087.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: 1003) [annotate] [blame] [check-ins using] [more...]
<A NAME=LN> <TITLE>LN</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>LN</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> <P> <H3> syntax: </H3> <em>ln</em>(<expression>) <P> <P> <P> <expression> can be any valid scalar REDUCE expression. <P> <P> The <em>ln</em> operator returns the natural logarithm of its argument. However, unlike <A HREF=r37_0088.html>log</A>, there are no algebraic rules associated with it; it will only evaluate when <A HREF=r37_0330.html>rounded</A> is on, and the argument is a real number. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> ln(x); LN(X) ln 4; LN(4) ln(e); LN(E) df(ln(x),x); DF(LN(X),X) on rounded; ln 4; 1.38629436112 ln e; 1 </TT></PRE><P>Because of the restricted algebraic properties of <em>ln</em>, use rs are advised to use <A HREF=r37_0088.html>log</A> whenever possible. <P> <P> <P>