Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 6ed14ebfd686aa32f7956e552aa2e21d > files > 2968

csound-manual-5.13.0-5.fc15.noarch.rpm

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>vdelay</title>
    <link rel="stylesheet" href="csound.css" type="text/css" />
    <meta name="generator" content="DocBook XSL Stylesheets V1.75.2" />
    <link rel="home" href="index.html" title="The Canonical Csound Reference Manual" />
    <link rel="up" href="OpcodesTop.html" title="Orchestra Opcodes and Operators" />
    <link rel="prev" href="vcopy_i.html" title="vcopy_i" />
    <link rel="next" href="vdelay3.html" title="vdelay3" />
  </head>
  <body>
    <div class="navheader">
      <table width="100%" summary="Navigation header">
        <tr>
          <th colspan="3" align="center">vdelay</th>
        </tr>
        <tr>
          <td width="20%" align="left"><a accesskey="p" href="vcopy_i.html">Prev</a> </td>
          <th width="60%" align="center">Orchestra Opcodes and Operators</th>
          <td width="20%" align="right"> <a accesskey="n" href="vdelay3.html">Next</a></td>
        </tr>
      </table>
      <hr />
    </div>
    <div class="refentry" title="vdelay">
      <a id="vdelay"></a>
      <div class="titlepage"></div>
      <a id="IndexVdelay" class="indexterm"></a>
      <div class="refnamediv">
        <h2>
          <span class="refentrytitle">vdelay</span>
        </h2>
        <p>vdelay — 
      An interpolating variable time delay.
    </p>
      </div>
      <div class="refsect1" title="Description">
        <a id="id3325933"></a>
        <h2>Description</h2>
        <p>
      This is an interpolating variable time delay, it is not very different from the existing implementation (<a class="link" href="deltapi.html" title="deltapi"><em class="citetitle">deltapi</em></a>), it is only easier to use.
    </p>
      </div>
      <div class="refsect1" title="Syntax">
        <a id="id3325953"></a>
        <h2>Syntax</h2>
        <pre class="synopsis">ares <span class="command"><strong>vdelay</strong></span> asig, adel, imaxdel [, iskip]</pre>
      </div>
      <div class="refsect1" title="Initialization">
        <a id="id3326890"></a>
        <h2>Initialization</h2>
        <p>
      <span class="emphasis"><em>imaxdel</em></span> -- Maximum value of delay in milliseconds. If <span class="emphasis"><em>adel</em></span> gains a value greater than <span class="emphasis"><em>imaxdel</em></span> it is folded around <span class="emphasis"><em>imaxdel</em></span>. This should not happen.
    </p>
        <p>
      <span class="emphasis"><em>iskip</em></span> -- Skip initialization if present and non­zero
    </p>
      </div>
      <div class="refsect1" title="Performance">
        <a id="id3326922"></a>
        <h2>Performance</h2>
        <p>
      With this unit generator it is possible to do Doppler effects or chorusing and flanging.
    </p>
        <p>
      <span class="emphasis"><em>asig</em></span> -- Input signal.
    </p>
        <p>
      <span class="emphasis"><em>adel</em></span> -- Current value of delay in milliseconds. Note that linear functions have no pitch change effects. Fast changing values of <span class="emphasis"><em>adel</em></span> will cause discontinuities in the waveform resulting noise.
    </p>
      </div>
      <div class="refsect1" title="Examples">
        <a id="id3326958"></a>
        <h2>Examples</h2>
        <p>
      </p>
        <div class="informalexample">
          <pre class="programlisting">
  <span class="stamnt">f</span>1 0 8192 10 1
  ims     <span class="op">=</span>          100             <span class="comment">; Maximum delay time in msec</span>
  a1      <span class="opc">oscil</span>      10000, 1737, 1  <span class="comment">; Make a signal</span>
  a2      <span class="opc">oscil</span>      ims<span class="op">/</span>2, 1<span class="op">/</span>p3, 1  <span class="comment">; Make an LFO</span>
  a2      <span class="op">=</span>          a2 <span class="op">+</span> ims<span class="op">/</span>2      <span class="comment">; Offset the LFO so that it is positive</span>
  a3      <span class="opc">vdelay</span>     a1, a2, ims     <span class="comment">; Use the LFO to control delay time</span>
          <span class="opc">out</span>        a3</pre>
        </div>
        <p>
    </p>
        <p>
      Two important points here. First, the delay time must be always positive. And second, even though the delay time can be controlled in k-rate, it is not advised to do so, since sudden time changes will create clicks.
    </p>
      </div>
      <div class="refsect1" title="See Also">
        <a id="id3327078"></a>
        <h2>See Also</h2>
        <p>
      <a class="link" href="vdelay3.html" title="vdelay3"><em class="citetitle">vdelay3</em></a>
    </p>
      </div>
      <div class="refsect1" title="Credits">
        <a id="id3327096"></a>
        <h2>Credits</h2>
        <p>
      </p>
        <table border="0" summary="Simple list" class="simplelist">
          <tr>
            <td>Author: Paris Smaragdis</td>
          </tr>
          <tr>
            <td>MIT, Cambridge</td>
          </tr>
          <tr>
            <td>1995</td>
          </tr>
        </table>
        <p>
    </p>
      </div>
    </div>
    <div class="navfooter">
      <hr />
      <table width="100%" summary="Navigation footer">
        <tr>
          <td width="40%" align="left"><a accesskey="p" href="vcopy_i.html">Prev</a> </td>
          <td width="20%" align="center">
            <a accesskey="u" href="OpcodesTop.html">Up</a>
          </td>
          <td width="40%" align="right"> <a accesskey="n" href="vdelay3.html">Next</a></td>
        </tr>
        <tr>
          <td width="40%" align="left" valign="top">vcopy_i </td>
          <td width="20%" align="center">
            <a accesskey="h" href="index.html">Home</a>
          </td>
          <td width="40%" align="right" valign="top"> vdelay3</td>
        </tr>
      </table>
    </div>
  </body>
</html>