Artifact 17fad065c2e7d24b110afb0a34766a3a2d27e09eada43ef66e47d495053b6178:
- Executable file
r37/lisp/csl/html/r37_0602.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: 800) [annotate] [blame] [check-ins using] [more...]
<A NAME=minor> <TITLE>minor</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>MINOR</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> <P> <H3> syntax: </H3> <em>minor</em>(<matrix>,<r>,<c>) <P> <P> <P> <matrix> :- a <A HREF=r37_0345.html>matrix</A>. <r>,<c> :- positive integers. <P> <P> <em>minor</em>computes the (<r>,<c>)'th minor of <matrix>. This is created by removing the <r>'th row and the <c>'th column from <matrix>. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> minor(A,1,3); [4 5] [ ] [7 8] </TT></PRE><P>Related functions: <A HREF=r37_0608.html>remove_columns</A>, <A HREF=r37_0609.html>remove_rows</A>. <P> <P>