Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > b707d9a4ee443103660a75ccb6e51334 > files > 375

csound-doc-5.19.01-10.mga5.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>atonex</title>
    <link rel="stylesheet" type="text/css" href="csound.css" />
    <meta name="generator" content="DocBook XSL Stylesheets V1.76.1" />
    <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="atonek.html" title="atonek" />
    <link rel="next" href="ATSadd.html" title="ATSadd" />
  </head>
  <body>
    <div class="navheader">
      <table width="100%" summary="Navigation header">
        <tr>
          <th colspan="3" align="center">atonex</th>
        </tr>
        <tr>
          <td width="20%" align="left"><a accesskey="p" href="atonek.html">Prev</a> </td>
          <th width="60%" align="center">Orchestra Opcodes and Operators</th>
          <td width="20%" align="right"> <a accesskey="n" href="ATSadd.html">Next</a></td>
        </tr>
      </table>
      <hr />
    </div>
    <div class="refentry" title="atonex">
      <a id="atonex"></a>
      <div class="titlepage"></div>
      <a id="IndexAtonex" class="indexterm"></a>
      <div class="refnamediv">
        <h2>
          <span class="refentrytitle">atonex</span>
        </h2>
        <p>atonex — 
      Emulates a stack of filters using the atone opcode.
          </p>
      </div>
      <div class="refsect1" title="Description">
        <a id="idp13778440"></a>
        <h2>Description</h2>
        <p>
      <span class="emphasis"><em>atonex</em></span> is equivalent to a filter consisting of more layers of <a class="link" href="atone.html" title="atone"><em class="citetitle">atone</em></a> with the same arguments, serially connected. Using a stack of a larger number of filters allows a sharper cutoff. They are faster than using a larger number instances in a Csound orchestra of the old opcodes, because only one initialization and k- cycle are needed at time and the audio loop falls entirely inside the cache memory of processor.
    </p>
      </div>
      <div class="refsect1" title="Syntax">
        <a id="idp13780104"></a>
        <h2>Syntax</h2>
        <pre class="synopsis">ares <span class="command"><strong>atonex</strong></span> asig, khp [, inumlayer] [, iskip]</pre>
      </div>
      <div class="refsect1" title="Initialization">
        <a id="idp13831712"></a>
        <h2>Initialization</h2>
        <p>
      <span class="emphasis"><em>inumlayer</em></span> (optional) -- number of elements in the filter stack. Default value is 4.
    </p>
        <p>
      <span class="emphasis"><em>iskip</em></span> (optional, default=0) -- initial disposition of internal data space. Since filtering incorporates a feedback loop of previous output, the initial status of the storage space used is significant. A zero value will clear the space; a non-zero value will allow previous information to remain. The default value is 0.
    </p>
      </div>
      <div class="refsect1" title="Performance">
        <a id="idp13833312"></a>
        <h2>Performance</h2>
        <p>
      <span class="emphasis"><em>asig</em></span> -- input signal
    </p>
        <p>
      <span class="emphasis"><em>khp</em></span> -- the response curve's half-power point. Half power is defined as peak power / root 2.
    </p>
      </div>
      <div class="refsect1" title="Examples">
        <a id="idp13834632"></a>
        <h2>Examples</h2>
        <p>
      Here is an example of the atonex opcode. It uses the file <a class="ulink" href="examples/atonex.csd" target="_top"><em class="citetitle">atonex.csd</em></a>.

      </p>
        <div class="example">
          <a id="idp13835600"></a>
          <p class="title">
            <strong>Example 54. Example of the atonex opcode.</strong>
          </p>
          <div class="example-contents">
            <pre class="programlisting">
<span class="csdtag">&lt;CsoundSynthesizer&gt;</span>
<span class="csdtag">&lt;CsOptions&gt;</span>
<span class="comment">; Select audio/midi flags here according to platform</span>
-odac     <span class="comment">;;;RT audio out</span>
<span class="comment">;-iadc    ;;;uncomment -iadc if RT audio input is needed too</span>
<span class="comment">; For Non-realtime ouput leave only the line below:</span>
<span class="comment">; -o atonex.wav -W ;;; for file output any platform</span>
<span class="csdtag">&lt;/CsOptions&gt;</span>
<span class="csdtag">&lt;CsInstruments&gt;</span>

<span class="ohdr">sr</span> <span class="op">=</span> 44100
<span class="ohdr">ksmps</span> <span class="op">=</span> 32
<span class="ohdr">nchnls</span> <span class="op">=</span> 2
<span class="ohdr">0dbfs</span> <span class="op">=</span> 1

<span class="oblock">instr</span> 1	<span class="comment">; unfiltered noise</span>

asig	<span class="opc">rand</span>	0.7	<span class="comment">; white noise</span>
	<span class="opc">outs</span>	asig, asig

<span class="oblock">endin</span>

<span class="oblock">instr</span> 2	<span class="comment">; filtered noise</span>

asig	<span class="opc">rand</span>	0.7
khp	<span class="opc">line</span>	100, p3, 3000
afilt	<span class="opc">atonex</span>	asig, khp, 32

<span class="comment">; Clip the filtered signal's amplitude to 85 dB.</span>
a1	<span class="opc">clip</span> afilt, 2, <span class="opc">ampdb</span>(85)
	<span class="opc">outs</span> a1, a1
<span class="oblock">endin</span>

<span class="csdtag">&lt;/CsInstruments&gt;</span>
<span class="csdtag">&lt;CsScore&gt;</span>

<span class="stamnt">i</span> 1 0 2
<span class="stamnt">i</span> 2 2 2

<span class="stamnt">e</span>

<span class="csdtag">&lt;/CsScore&gt;</span>
<span class="csdtag">&lt;/CsoundSynthesizer&gt;</span>
</pre>
          </div>
        </div>
        <p><br class="example-break" />
    </p>
      </div>
      <div class="refsect1" title="See Also">
        <a id="idp13836608"></a>
        <h2>See Also</h2>
        <p>
      <a class="link" href="resonx.html" title="resonx"><em class="citetitle">resonx</em></a>,
      <a class="link" href="tonex.html" title="tonex"><em class="citetitle">tonex</em></a>
    </p>
      </div>
      <div class="refsect1" title="Credits">
        <a id="idp13838104"></a>
        <h2>Credits</h2>
        <p>
      </p>
        <table border="0" summary="Simple list" class="simplelist">
          <tr>
            <td>Author: Gabriel Maldonado (adapted by John ffitch)</td>
          </tr>
          <tr>
            <td>Italy</td>
          </tr>
        </table>
        <p>
    </p>
        <p>New in Csound version 3.49</p>
      </div>
    </div>
    <div class="navfooter">
      <hr />
      <table width="100%" summary="Navigation footer">
        <tr>
          <td width="40%" align="left"><a accesskey="p" href="atonek.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="ATSadd.html">Next</a></td>
        </tr>
        <tr>
          <td width="40%" align="left" valign="top">atonek </td>
          <td width="20%" align="center">
            <a accesskey="h" href="index.html">Home</a>
          </td>
          <td width="40%" align="right" valign="top"> ATSadd</td>
        </tr>
      </table>
    </div>
  </body>
</html>