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