<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>