Artifact e2b14c716c518e82fc5636bde7f4c9a7ed8d0ae3c13b1d0be6b6da2be51a4c75:
- Executable file
r37/lisp/csl/html/r37_0190.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: 987) [annotate] [blame] [check-ins using] [more...]
<A NAME=CLEARRULES> <TITLE>CLEARRULES</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>CLEARRULES</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>command</B><P> <P> <P> <P> <P> <H3> syntax: </H3> <em>clearrules</em><list>{,<list>}+ <P> <P> <P> The operator <em>clearrules</em> is used to remove previously defined <A HREF=r37_0060.html>rule</A> lists from the system. <list> can be an exp licit rule list, or evaluate to a rule list. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> trig1 := {cos(~x)*cos(~y) => (cos(x+y)+cos(x-y))/2, cos(~x)*sin(~y) => (sin(x+y)-sin(x-y))/2, sin(~x)*sin(~y) => (cos(x-y)-cos(x+y))/2, cos(~x)^2 => (1+cos(2*x))/2, sin(~x)^2 => (1-cos(2*x))/2}$ let trig1; cos(a)*cos(b); COS(A - B) + COS(A + B) ----------------------- 2 clearrules trig1; cos(a)*cos(b); COS(A)*COS(B) </TT></PRE><P>