rmath.html 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <html lang="en">
  2. <head>
  3. <title>rmath - 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="lpsolve.html#lpsolve" title="lpsolve">
  10. <link rel="next" href="umf.html#umf" title="umf">
  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="rmath"></a>
  28. <p>
  29. Next:&nbsp;<a rel="next" accesskey="n" href="umf.html#umf">umf</a>,
  30. Previous:&nbsp;<a rel="previous" accesskey="p" href="lpsolve.html#lpsolve">lpsolve</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.16 <code>rmath</code></h3>
  35. <p>A selection of mathematical and statistical functions from the GNU R
  36. math library has a virtual code interface of the form
  37. <pre class="example"> library('rmath',f)
  38. </pre>
  39. <p class="noindent">where <code>f</code> is a character string derived from the name of a
  40. function in the C language API described in the manual
  41. <samp><span class="file">R-exts.pdf</span></samp>, available at <a href="http://www.r-project.org">http://www.r-project.org</a>.
  42. <p>Every function in the library returns a real result in the form of
  43. <a href="math.html#math">math</a>, but functions differ in the argument types. The arguments
  44. are tuples of real numbers and booleans that also closely follow the
  45. native API as explained below.
  46. <ul class="menu">
  47. <li><a accesskey="1" href="rmath-statistical-functions.html#rmath-statistical-functions">rmath statistical functions</a>
  48. <li><a accesskey="2" href="rmath-miscellaneous-functions.html#rmath-miscellaneous-functions">rmath miscellaneous functions</a>
  49. <li><a accesskey="3" href="rmath-exceptions.html#rmath-exceptions">rmath exceptions</a>
  50. </ul>
  51. </body></html>