umf-output.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <html lang="en">
  2. <head>
  3. <title>umf output - avram - a virtual machine code interpreter</title>
  4. <meta http-equiv="Content-Type" content="text/html">
  5. <meta name="description" content="avram - a virtual machine code interpreter">
  6. <meta name="generator" content="makeinfo 4.13">
  7. <link title="Top" rel="start" href="index.html#Top">
  8. <link rel="up" href="umf.html#umf" title="umf">
  9. <link rel="prev" href="umf-input-parameters.html#umf-input-parameters" title="umf input parameters">
  10. <link rel="next" href="umf-exceptions.html#umf-exceptions" title="umf exceptions">
  11. <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
  12. <meta http-equiv="Content-Style-Type" content="text/css">
  13. <style type="text/css"><!--
  14. pre.display { font-family:inherit }
  15. pre.format { font-family:inherit }
  16. pre.smalldisplay { font-family:inherit; font-size:smaller }
  17. pre.smallformat { font-family:inherit; font-size:smaller }
  18. pre.smallexample { font-size:smaller }
  19. pre.smalllisp { font-size:smaller }
  20. span.sc { font-variant:small-caps }
  21. span.roman { font-family:serif; font-weight:normal; }
  22. span.sansserif { font-family:sans-serif; font-weight:normal; }
  23. --></style>
  24. </head>
  25. <body>
  26. <div class="node">
  27. <a name="umf-output"></a>
  28. <p>
  29. Next:&nbsp;<a rel="next" accesskey="n" href="umf-exceptions.html#umf-exceptions">umf exceptions</a>,
  30. Previous:&nbsp;<a rel="previous" accesskey="p" href="umf-input-parameters.html#umf-input-parameters">umf input parameters</a>,
  31. Up:&nbsp;<a rel="up" accesskey="u" href="umf.html#umf">umf</a>
  32. <hr>
  33. </div>
  34. <h4 class="subsection">D.17.2 <code>umf</code> output</h4>
  35. <p>If no exception occurs, the solution <var>x</var> to the matrix equation
  36. <var>M</var> <var>x</var> = <var>b</var> noted previously will be returned if one
  37. exists.
  38. <p>The solution is represented as either a list of real numbers as in
  39. <a href="math.html#math">math</a>, or a list of complex numbers as in <a href="complex.html#complex">complex</a>. Real
  40. numbers are returned by the <code>di_</code>* functions, and complex numbers
  41. are returned by the <code>zi_</code>* functions.
  42. <p>If no solution exists due to a singular matrix, an empty list is
  43. returned. The lack of a solution isn't treated as an exceptional
  44. condition.
  45. </body></html>