123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <html lang="en">
- <head>
- <title>umf output - avram - a virtual machine code interpreter</title>
- <meta http-equiv="Content-Type" content="text/html">
- <meta name="description" content="avram - a virtual machine code interpreter">
- <meta name="generator" content="makeinfo 4.13">
- <link title="Top" rel="start" href="index.html#Top">
- <link rel="up" href="umf.html#umf" title="umf">
- <link rel="prev" href="umf-input-parameters.html#umf-input-parameters" title="umf input parameters">
- <link rel="next" href="umf-exceptions.html#umf-exceptions" title="umf exceptions">
- <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
- <meta http-equiv="Content-Style-Type" content="text/css">
- <style type="text/css"><!--
- pre.display { font-family:inherit }
- pre.format { font-family:inherit }
- pre.smalldisplay { font-family:inherit; font-size:smaller }
- pre.smallformat { font-family:inherit; font-size:smaller }
- pre.smallexample { font-size:smaller }
- pre.smalllisp { font-size:smaller }
- span.sc { font-variant:small-caps }
- span.roman { font-family:serif; font-weight:normal; }
- span.sansserif { font-family:sans-serif; font-weight:normal; }
- --></style>
- </head>
- <body>
- <div class="node">
- <a name="umf-output"></a>
- <p>
- Next: <a rel="next" accesskey="n" href="umf-exceptions.html#umf-exceptions">umf exceptions</a>,
- Previous: <a rel="previous" accesskey="p" href="umf-input-parameters.html#umf-input-parameters">umf input parameters</a>,
- Up: <a rel="up" accesskey="u" href="umf.html#umf">umf</a>
- <hr>
- </div>
- <h4 class="subsection">D.17.2 <code>umf</code> output</h4>
- <p>If no exception occurs, the solution <var>x</var> to the matrix equation
- <var>M</var> <var>x</var> = <var>b</var> noted previously will be returned if one
- exists.
- <p>The solution is represented as either a list of real numbers as in
- <a href="math.html#math">math</a>, or a list of complex numbers as in <a href="complex.html#complex">complex</a>. Real
- numbers are returned by the <code>di_</code>* functions, and complex numbers
- are returned by the <code>zi_</code>* functions.
- <p>If no solution exists due to a singular matrix, an empty list is
- returned. The lack of a solution isn't treated as an exceptional
- condition.
- </body></html>
|