Artifact 09d4a3655c1419d9bc1c94d24f4d3aa795b4876de7de59ea1a3a03e0f3eaa927:
- Executable file
r37/lisp/csl/html/r37_0166.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: 932) [annotate] [blame] [check-ins using] [more...]
<A NAME=NUM> <TITLE>NUM</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>NUM</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> The <em>num</em> operator returns the numerator of its argument. <P> <H3> syntax: </H3> <P> <P> <em>num</em>(<expression>) or <em>num</em> <simple\_expression> <P> <P> <P> <expression> can be any valid REDUCE scalar expression. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> num(100/6); 50 num(a/5 + b/6); 6*A + 5*B num(sin(x)); SIN(X) </TT></PRE><P><em>num</em>returns the numerator of the expression after it has b een simplified by REDUCE. As seen in the examples, this includes putting sums of rational expressions over a common denominator, and reducing common factors where possible. If the expression is not a rational expression, it is returned unchanged. <P> <P> <P>