Artifact 72fa3cd9e24453d72033237beac959ed049a6662c05dc9e8c7c007fc9be980ef:
- Executable file
r37/lisp/csl/html/r37_0244.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: 1165) [annotate] [blame] [check-ins using] [more...]
<A NAME=ASIN> <TITLE>ASIN</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>ASIN</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> The <em>asin</em> operator returns the arcsine of its argument. <P> <P> <P> <H3> syntax: </H3> <em>asin</em>(<expression>) or <em>asin</em> <simple\_expression> <P> <P> <P> <expression> may be any scalar REDUCE expression, not an array, matrix or vector expression. <simple\_expression> must be a single identifier or begin with a prefix operator name. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> asin(givenangle); ASIN(GIVENANGLE) asin(5); ASIN(5) df(asin(2*x),x); 2 2*SQRT( - 4*X + 1)) - -------------------- 2 4*X - 1 on rounded; asin .5; 0.523598775598 asin(sqrt(3)); ASIN(1.73205080757) asin(sqrt(3)/2); 1.04719755120 </TT></PRE><P>A numeric value is not returned by <em>asin</em> unless the switch <em>rounded</em> is on and its argument has an absolute value less than or equal to 1. <P> <P> <P>