Artifact 418de9cd60e9ac135feefdd23a1345df473a05779528ca9c77884906288d736b:
- Executable file
r37/lisp/csl/html/r37_0249.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: 950) [annotate] [blame] [check-ins using] [more...]
<A NAME=COS> <TITLE>COS</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>COS</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> The <em>cos</em> operator returns the cosine of its argument. <P> <P> <P> <H3> syntax: </H3> <em>cos</em>(<expression>) or <em>cos</em> <simple\_expression> <P> <P> <P> <expression> is any valid scalar REDUCE expression, <simple\_expression> is a single identifier or begins with a prefix operator name. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> cos abc; COS(ABC) cos(pi); -1 cos 4; COS(4) on rounded; cos(4); - 0.653643620864 cos log 5; - 0.0386319699339 </TT></PRE><P><em>cos</em>returns a numeric value only if <A HREF=r37_0330.html>rounded</A> is on. Then the cosine is calculated to the current degree of floating point precision. <P> <P> <P> <P>