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