Artifact 7cfcb997ab752307a332c1a5d79cbdf1bbb7c39018bc37e20f0840f1cdb3012f:
- Executable file
r37/lisp/csl/html/r37_0158.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: 996) [annotate] [blame] [check-ins using] [more...]
<A NAME=LHS> <TITLE>LHS</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>LHS</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> The <em>lhs</em> operator returns the left-hand side of an <A HREF=r37_0045.html>equation</A>, such as those returned in a list by <A HREF=r37_0179.html>solve</A>. <P> <H3> syntax: </H3> <P> <P> <em>lhs</em>(<equation>) or <em>lhs</em> <equation> <P> <P> <P> <P> <equation> must be an equation of the form <P> <P> <em>left-hand side</em><em>=</em><em>right-hand side</em>. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> polly := (x+3)*(x^4+2x+1); 5 4 2 POLLY := X + 3*X + 2*X + 7*X + 3 pollyroots := solve(polly,x); POLLYROOTS := {X=ROOT F(X3 - X2 + X + 1,X , O ) X=-1, X=-3} variable := lhs first pollyroots; VARIABLE := X </TT></PRE><P>