Artifact af7c40d5d8cac09a9bf1f4e768e7873f174296c70a55912270d663ce51d5ffed:
- Executable file
r37/lisp/csl/html/r37_0259.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: 933) [annotate] [blame] [check-ins using] [more...]
<A NAME=SIN> <TITLE>SIN</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>SIN</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> The <em>sin</em> operator returns the sine of its argument. <P> <H3> syntax: </H3> <P> <P> <em>sin</em>(<expression>) or <em>sin</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> sin aa; SIN(AA) sin(pi/2); 1 on rounded; sin 3; 0.14112000806 sin(pi/2); 1.0 </TT></PRE><P><em>sin</em>returns a numeric value only if <em>rounded</em> is on . Then the sine is calculated to the current degree of floating point precision. The argument in this case is assumed to be in radians. <P> <P> <P>