Artifact 34cc645c8f51ad3cc9d7e99d001b36dfcc8f81b7c9a1e8dde05b88463e0b56f3:
- Executable file
r37/lisp/csl/html/r37_0582.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: 899) [annotate] [blame] [check-ins using] [more...]
<A NAME=coeff_matrix> <TITLE>coeff_matrix</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>COEFF_MATRIX</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> <P> <H3> syntax: </H3> <em>coeff_matrix</em>({<lineq\_list>}) <P> <P> <P> (If you are feeling lazy then the braces can be omitted.) <P> <P> <lineq\_list> :- linear equations. Can be of the form equation = number or just equation. <P> <P> <em>coeff_matrix</em>creates the coefficient matrix C of the linear equations. <P> <P> It returns {C,X,B} such that CX = B. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> coeff_matrix({x+y+4*z=10,y+x-z=20,x+y+4}); { [4 1 1] [ ] [-1 1 1] [ ] [0 1 1] , [z] [ ] [y] [ ] [x] , [10] [ ] [20] [ ] [-4] } </TT></PRE><P>