lapack.html 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <html lang="en">
  2. <head>
  3. <title>lapack - 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="External-Libraries.html#External-Libraries" title="External Libraries">
  9. <link rel="prev" href="kinsol.html#kinsol" title="kinsol">
  10. <link rel="next" href="math.html#math" title="math">
  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="lapack"></a>
  28. <p>
  29. Next:&nbsp;<a rel="next" accesskey="n" href="math.html#math">math</a>,
  30. Previous:&nbsp;<a rel="previous" accesskey="p" href="kinsol.html#kinsol">kinsol</a>,
  31. Up:&nbsp;<a rel="up" accesskey="u" href="External-Libraries.html#External-Libraries">External Libraries</a>
  32. <hr>
  33. </div>
  34. <h3 class="section">D.10 <code>lapack</code></h3>
  35. <p>An arsenal of weapons grade linear algebra functions from the
  36. <a name="index-Fortran-747"></a><code>LAPACK</code> Fortran library is accessible to virtual code
  37. <a name="index-linear-algebra-748"></a>applications through library calls of the form
  38. <pre class="example"> library('lapack',f)
  39. </pre>
  40. <p>Each library function <code>f</code> invokes a <code>LAPACK</code> function of the
  41. same name, but the calling conventions on the virtual side are an
  42. artifact of the interface requiring their own documentation.
  43. <p>Some functions that are part of <code>LAPACK</code> are not described here
  44. (mostly the so called computational and auxiliary routines, and
  45. <a name="index-single-precision-749"></a>anything in single precision), because they are not accessible by
  46. the virtual code interface.
  47. <ul class="menu">
  48. <li><a accesskey="1" href="lapack-calling-conventions.html#lapack-calling-conventions">lapack calling conventions</a>
  49. <li><a accesskey="2" href="lapack-exceptions.html#lapack-exceptions">lapack exceptions</a>
  50. <li><a accesskey="3" href="Additional-lapack-notes.html#Additional-lapack-notes">Additional lapack notes</a>
  51. </ul>
  52. </body></html>