harminv-input-parameters.html 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <html lang="en">
  2. <head>
  3. <title>harminv input parameters - 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="harminv.html#harminv" title="harminv">
  9. <link rel="prev" href="harminv.html#harminv" title="harminv">
  10. <link rel="next" href="harminv-output.html#harminv-output" title="harminv output">
  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="harminv-input-parameters"></a>
  28. <p>
  29. Next:&nbsp;<a rel="next" accesskey="n" href="harminv-output.html#harminv-output">harminv output</a>,
  30. Previous:&nbsp;<a rel="previous" accesskey="p" href="harminv.html#harminv">harminv</a>,
  31. Up:&nbsp;<a rel="up" accesskey="u" href="harminv.html#harminv">harminv</a>
  32. <hr>
  33. </div>
  34. <h4 class="subsection">D.8.1 <code>harminv</code> input parameters</h4>
  35. <p>The virtual machine interface to the <code>harminv</code> library provides
  36. only a single function, callable as
  37. <pre class="example"> library('harminv','hsolve')
  38. </pre>
  39. <p class="noindent">The input to this function is an operand of the form
  40. <pre class="example"> (signal,(fmin,fmax),nf)
  41. </pre>
  42. <p class="noindent">where
  43. <ul>
  44. <li><code>signal</code> is a list of complex numbers containing samples
  45. of the function to be decomposed at equal time steps
  46. (<a href="complex.html#complex">complex</a> and <a href="Representation-of-Numeric-and-Textual-Data.html#Representation-of-Numeric-and-Textual-Data">Representation of Numeric and Textual Data</a>).
  47. <li><code>fmin</code> and <code>fmax</code> are the band limits expressed in units
  48. of inverse time steps as floating point numbers (<a href="math.html#math">math</a>).
  49. <li><code>nf</code> is the number of spectral basis functions expressed as a
  50. natural (<a href="Representation-of-Numeric-and-Textual-Data.html#Representation-of-Numeric-and-Textual-Data">Representation of Numeric and Textual Data</a>).
  51. </ul>
  52. <p class="noindent">If a value of 0 is specified for <code>nf</code> a default value of
  53. <pre class="example"> min(300, (fmax - fmin) * n * 1.1)
  54. </pre>
  55. <p class="noindent">is used, where <code>n</code> is the length of <code>signal</code>. The
  56. computation time increases cubically with <code>nf</code>.
  57. </body></html>