dgscon_8c.html

来自「SuperLU is a general purpose library for」· HTML 代码 · 共 144 行

HTML
144
字号
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"><title>SuperLU: SRC/dgscon.c File Reference</title><link href="doxygen.css" rel="stylesheet" type="text/css"><link href="tabs.css" rel="stylesheet" type="text/css"></head><body><!-- Generated by Doxygen 1.4.6 --><div class="tabs">  <ul>    <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>    <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>    <li id="current"><a href="files.html"><span>Files</span></a></li>  </ul></div><div class="tabs">  <ul>    <li><a href="files.html"><span>File&nbsp;List</span></a></li>    <li><a href="globals.html"><span>Globals</span></a></li>  </ul></div><h1>SRC/dgscon.c File Reference</h1>Estimates reciprocal of the condition number of a general matrix. <a href="#_details">More...</a><p><code>#include &lt;math.h&gt;</code><br><code>#include &quot;<a class="el" href="slu__ddefs_8h-source.html">slu_ddefs.h</a>&quot;</code><br><table border="0" cellpadding="0" cellspacing="0"><tr><td></td></tr><tr><td colspan="2"><br><h2>Functions</h2></td></tr><tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="dgscon_8c.html#2c7a4267d306243d3ceb15531522033e">dgscon</a> (char *norm, <a class="el" href="structSuperMatrix.html">SuperMatrix</a> *L, <a class="el" href="structSuperMatrix.html">SuperMatrix</a> *U, double anorm, double *rcond, <a class="el" href="structSuperLUStat__t.html">SuperLUStat_t</a> *stat, int *info)</td></tr></table><hr><a name="_details"></a><h2>Detailed Description</h2><pre> -- SuperLU routine (version 3.0) -- Univ. of California Berkeley, Xerox Palo Alto Research Center, and Lawrence Berkeley National Lab. October 15, 2003</pre><p><pre> Modified from lapack routines DGECON. </pre> <hr><h2>Function Documentation</h2><a class="anchor" name="2c7a4267d306243d3ceb15531522033e"></a><!-- doxytag: member="dgscon.c::dgscon" ref="2c7a4267d306243d3ceb15531522033e" args="(char *norm, SuperMatrix *L, SuperMatrix *U, double anorm, double *rcond, SuperLUStat_t *stat, int *info)" --><p><table class="mdTable" cellpadding="2" cellspacing="0">  <tr>    <td class="mdRow">      <table cellpadding="0" cellspacing="0" border="0">        <tr>          <td class="md" nowrap valign="top">void dgscon           </td>          <td class="md" valign="top">(&nbsp;</td>          <td class="md" nowrap valign="top">char *&nbsp;</td>          <td class="mdname" nowrap> <em>norm</em>, </td>        </tr>        <tr>          <td class="md" nowrap align="right"></td>          <td class="md"></td>          <td class="md" nowrap><a class="el" href="structSuperMatrix.html">SuperMatrix</a> *&nbsp;</td>          <td class="mdname" nowrap> <em>L</em>, </td>        </tr>        <tr>          <td class="md" nowrap align="right"></td>          <td class="md"></td>          <td class="md" nowrap><a class="el" href="structSuperMatrix.html">SuperMatrix</a> *&nbsp;</td>          <td class="mdname" nowrap> <em>U</em>, </td>        </tr>        <tr>          <td class="md" nowrap align="right"></td>          <td class="md"></td>          <td class="md" nowrap>double&nbsp;</td>          <td class="mdname" nowrap> <em>anorm</em>, </td>        </tr>        <tr>          <td class="md" nowrap align="right"></td>          <td class="md"></td>          <td class="md" nowrap>double *&nbsp;</td>          <td class="mdname" nowrap> <em>rcond</em>, </td>        </tr>        <tr>          <td class="md" nowrap align="right"></td>          <td class="md"></td>          <td class="md" nowrap><a class="el" href="structSuperLUStat__t.html">SuperLUStat_t</a> *&nbsp;</td>          <td class="mdname" nowrap> <em>stat</em>, </td>        </tr>        <tr>          <td class="md" nowrap align="right"></td>          <td class="md"></td>          <td class="md" nowrap>int *&nbsp;</td>          <td class="mdname" nowrap> <em>info</em></td>        </tr>        <tr>          <td class="md"></td>          <td class="md">)&nbsp;</td>          <td class="md" colspan="2"></td>        </tr>      </table>    </td>  </tr></table><table cellspacing="5" cellpadding="0" border="0">  <tr>    <td>      &nbsp;    </td>    <td><p><pre>   Purpose      =======</pre><p><pre>   DGSCON estimates the reciprocal of the condition number of a general    real matrix A, in either the 1-norm or the infinity-norm, using      the LU factorization computed by DGETRF.   *</pre><p><pre>   An estimate is obtained for norm(inv(A)), and the reciprocal of the      condition number is computed as         RCOND = 1 / ( norm(A) * norm(inv(A)) ).</pre><p><pre>   See <a class="el" href="supermatrix_8h.html">supermatrix.h</a> for the definition of 'SuperMatrix' structure.</pre><p><pre>   Arguments      =========</pre><p><pre>    NORM    (input) char*            Specifies whether the 1-norm condition number or the               infinity-norm condition number is required:               = '1' or 'O':  1-norm;               = 'I':         Infinity-norm.</pre><p><pre>    L       (input) SuperMatrix*            The factor L from the factorization Pr*A*Pc=L*U as computed by            <a class="el" href="dgstrf_8c.html#9a055ed4d6378cdbbe6ec5c54121968f">dgstrf()</a>. Use compressed row subscripts storage for supernodes,            i.e., L has types: Stype = SLU_SC, Dtype = SLU_D, Mtype = SLU_TRLU.</pre><p><pre>    U       (input) SuperMatrix*            The factor U from the factorization Pr*A*Pc=L*U as computed by            <a class="el" href="dgstrf_8c.html#9a055ed4d6378cdbbe6ec5c54121968f">dgstrf()</a>. Use column-wise storage scheme, i.e., U has types:            Stype = SLU_NC, Dtype = SLU_D, Mtype = SLU_TRU.</pre><p><pre>    ANORM   (input) double            If NORM = '1' or 'O', the 1-norm of the original matrix A.               If NORM = 'I', the infinity-norm of the original matrix A.</pre><p><pre>    RCOND   (output) double*           The reciprocal of the condition number of the matrix A,              computed as RCOND = 1/(norm(A) * norm(inv(A))).</pre><p><pre>    INFO    (output) int*           = 0:  successful exit              &lt; 0:  if INFO = -i, the i-th argument had an illegal value</pre><p><pre>    =====================================================================  </pre>     </td>  </tr></table><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 1 22:40:40 2008 for SuperLU by&nbsp;<a href="http://www.doxygen.org/index.html"><img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address></body></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?