Artifact 1c7b50a6e07081b99913d2e418474b3071fd97b610b41c53d22f28b10557a65d:
- Executable file
r37/lisp/csl/html/r37_0088.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: 892) [annotate] [blame] [check-ins using] [more...]
<A NAME=LOG> <TITLE>LOG</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>LOG</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> The <em>log</em> operator returns the natural logarithm of its argument. <P> <H3> syntax: </H3> <P> <P> <em>log</em>(<expression>) or <em>log</em> <expression> <P> <P> <P> <expression> can be any valid scalar REDUCE expression. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> log(x); LOG(X) log 4; LOG(4) log(e); 1 on rounded; log 4; 1.38629436112 </TT></PRE><P><em>log</em>returns a numeric value only when <A HREF=r37_0330.html>rounded</A> is on. In that case, use of a negative argument for <em>log</em> results in an error message. No error is given on a negative argument when REDUCE is not in that mode. <P> <P> <P>