Artifact 04fffe8bffc3fe49267ca3f9040e56baea4074fe2d7c6021905a7a6aba1afa6f:
- Executable file
r37/lisp/csl/html/r37_0341.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: 786) [annotate] [blame] [check-ins using] [more...]
<A NAME=COFACTOR> <TITLE>COFACTOR</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>COFACTOR</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> The operator <em>cofactor</em> returns the cofactor of the element in row <row> and column <column> of a <A HREF=r37_0345.html>matrix</A>. Errors occur if <row> or <column> do not evaluate to integer expressions or if the matrix is not square. <P> <P> <P> <H3> syntax: </H3> <em>cofactor</em>(<matrix\_expression>,<row>,<column>) <P> <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> cofactor(mat((a,b,c),(d,e,f),(p,q,r)),2,2); A*R - C*P cofactor(mat((a,b,c),(d,e,f)),1,1); ***** non-square matrix </TT></PRE><P>