1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> Collection of matrix factorisation operation functions.</TITLE>
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.8">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H2> <A HREF="#DOC.DOCU">Collection of matrix factorisation operation functions.</A></H2></H2>
<HR>
<P><DL>
<DT>
void <B><A HREF="mxLUFactor.html">mxLUFactor</A></B>(<!1><A HREF="Mat.html">Mat</A>* mat, <!1><A HREF="Perm.html">Perm</A>* pivot)
<DD><I>Gaussian elimination with scaled partial pivoting.</I>
<DT>
void <B><A HREF="mxLUSolve.html">mxLUSolve</A></B>(<!1><A HREF="Mat.html">Mat</A>* mat, <!1><A HREF="Perm.html">Perm</A>* pivot, <!1><A HREF="Vec.html">Vec</A>* <!1><A HREF="SVM.html#DOC.42.4">b</A>, <!1><A HREF="Vec.html">Vec</A>* x)
<DD><I> Given an LU factorisation in <TT>A</TT>, solve <TT>Ax=b</TT> </I>
<DT>
void <B><A HREF="mxLUTSolve.html">mxLUTSolve</A></B>(<!1><A HREF="Mat.html">Mat</A>* mat, <!1><A HREF="Perm.html">Perm</A>* pivot, <!1><A HREF="Vec.html">Vec</A>* <!1><A HREF="SVM.html#DOC.42.4">b</A>, <!1><A HREF="Vec.html">Vec</A>* x)
<DD><I> Given an LU factorisation in <TT>A</TT>, solve <TT>A^Tx=b</TT> </I>
<DT>
void <B><A HREF="mxInverse.html">mxInverse</A></B>(<!1><A HREF="Mat.html">Mat</A>* mat, <!1><A HREF="Mat.html">Mat</A>* out)
<DD><I> Returns inverse of <TT>A</TT>, provided <TT>A</TT> is not too rank deficient.</I>
</DL></P>
<A NAME="DOC.DOCU"></A>
<HR>
<H2>Documentation</H2>
<BLOCKQUOTE>Collection of matrix factorisation operation functions.
Based on the "Meschach Library", available at the
anonymous ftp site thrain.anu.edu.au in the directory
pub/meschach.
<P>Most matrix factorisation routines are in-situ
unless otherwise specified.
<P></BLOCKQUOTE>
<DL>
</DL>
<DL><DT><DT><B>Author:</B><DD>David E. Stewart (david.stewart@anu.edu.au)
Zbigniew Leyk (zbigniew.leyk@anu.edu.au)
Ronan Collobert (collober@iro.umontreal.ca)
<DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I> <I><A HREF="HIER.html">HTML hierarchy of classes</A> or <A HREF="HIERjava.html">Java</A></I></P><HR>
<BR>
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
</BODY>
</HTML>
|