Sophie

Sophie

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

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>mac</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="lua_opcall.html" title="lua_opcall" />
    <link rel="next" href="maca.html" title="maca" />
  </head>
  <body>
    <div class="navheader">
      <table width="100%" summary="Navigation header">
        <tr>
          <th colspan="3" align="center">mac</th>
        </tr>
        <tr>
          <td width="20%" align="left"><a accesskey="p" href="lua_opcall.html">Prev</a> </td>
          <th width="60%" align="center">Orchestra Opcodes and Operators</th>
          <td width="20%" align="right"> <a accesskey="n" href="maca.html">Next</a></td>
        </tr>
      </table>
      <hr />
    </div>
    <div class="refentry" title="mac">
      <a id="mac"></a>
      <div class="titlepage"></div>
      <a id="IndexMac" class="indexterm"></a>
      <div class="refnamediv">
        <h2>
          <span class="refentrytitle">mac</span>
        </h2>
        <p>mac — 
      Multiplies and accumulates a- and k-rate signals.
          </p>
      </div>
      <div class="refsect1" title="Description">
        <a id="idp30069056"></a>
        <h2>Description</h2>
        <p>
      Multiplies and accumulates a- and k-rate signals.
    </p>
      </div>
      <div class="refsect1" title="Syntax">
        <a id="idp30069720"></a>
        <h2>Syntax</h2>
        <pre class="synopsis">ares <span class="command"><strong>mac</strong></span> ksig1, asig1 [, ksig2] [, asig2] [, ksig3] [, asig3] [...]</pre>
      </div>
      <div class="refsect1" title="Performance">
        <a id="idp30073080"></a>
        <h2>Performance</h2>
        <p>
      <span class="emphasis"><em>ksig1, etc.</em></span> -- k-rate input signals
    </p>
        <p>
      <span class="emphasis"><em>asig1, etc.</em></span> -- a-rate input signals
    </p>
        <p>
      <span class="emphasis"><em>mac</em></span> multiplies and accumulates a- and k-rate signals. It is equivalent to:
      </p>
        <div class="literallayout">
          <p><br />
        ares = asig1*ksig1 + asig2*ksig2 + asig3*ksig3 + ...<br />
      </p>
        </div>
        <p>
    </p>
      </div>
      <div class="refsect1" title="Examples">
        <a id="idp30075360"></a>
        <h2>Examples</h2>
        <p>
      Here is an example of the mac opcode. It uses the file <a class="ulink" href="examples/mac.csd" target="_top"><em class="citetitle">mac.csd</em></a>. It is written for *NIX systems, and will generate errors on Windows.
      </p>
        <div class="example">
          <a id="idp30126600"></a>
          <p class="title">
            <strong>Example 432. Example of the mac opcode.</strong>
          </p>
          <div class="example-contents">
            <p>See the sections <a class="link" href="UsingRealTime.html" title="Real-Time Audio"><em class="citetitle">Real-time Audio</em></a> and <a class="link" href="CommandFlags.html" title="Csound command line"><em class="citetitle">Command Line Flags</em></a> for more information on using command line flags.</p>
            <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">;;;realtime audio out</span>
<span class="comment">;-iadc    ;;;uncomment -iadc if real audio input is needed too</span>
<span class="comment">; For Non-realtime ouput leave only the line below:</span>
<span class="comment">; -o mac.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">;4 band equalizer</span>

klow <span class="op">=</span>	p4	<span class="comment">;low gain1</span>
klmid <span class="op">=</span>	p5	<span class="comment">;low gain2      </span>
kmidh <span class="op">=</span> p6	<span class="comment">;high gain1</span>
khigh <span class="op">=</span>	p7	<span class="comment">;high gain2</span>
ifn  <span class="op">=</span>  p8	<span class="comment">;table</span>

ilc1 <span class="opc">table</span> 0, ifn	<span class="comment">;low freqency range</span>
ilc2 <span class="opc">table</span> 1, ifn	<span class="comment">;low-mid</span>
ihc1 <span class="opc">table</span> 2, ifn	<span class="comment">;mid-high</span>
ihc2 <span class="opc">table</span> 3, ifn	<span class="comment">;high</span>

asig	<span class="opc">diskin2</span>	 "fox.wav", 1
alow1	<span class="opc">butterlp</span> asig, ilc1		<span class="comment">;lowpass 1</span>
almid	<span class="opc">butterlp</span> asig, ilc2	      	<span class="comment">;lowpass 2</span>
amidh 	<span class="opc">butterhp</span> asig, ihc1	       	<span class="comment">;highpass 1</span>
ahigh	<span class="opc">butterhp</span> asig, ihc2		<span class="comment">;highpass 2</span>
aout	<span class="opc">mac</span>	 klow, alow1, klmid, almid, kmidh, amidh, khigh, ahigh
        <span class="opc">outs</span>	 aout, aout

<span class="oblock">endin</span>
<span class="csdtag">&lt;/CsInstruments&gt;</span>
<span class="csdtag">&lt;CsScore&gt;</span>
<span class="stamnt">f</span>1 0  4 -2 150 300 600  5000
<span class="stamnt">f</span>2 0  4 -2 75  500 1000 10000
<span class="stamnt">f</span>3 0  4 -2 200 700 1500 3000

<span class="comment">;          low lowmid midhigh high table		</span>
<span class="stamnt">i</span> 1 0  2.8  2    1      1      1     1  
<span class="stamnt">i</span> 1 3  2.8  2    3      1      1     2 
<span class="stamnt">i</span> 1 6  2.8  2    1      2      3     3 
<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="idp30128816"></a>
        <h2>See Also</h2>
        <p>
      <a class="link" href="maca.html" title="maca"><em class="citetitle">maca</em></a>
    </p>
      </div>
      <div class="refsect1" title="Credits">
        <a id="idp30129832"></a>
        <h2>Credits</h2>
        <p>
      </p>
        <table border="0" summary="Simple list" class="simplelist">
          <tr>
            <td>Author: John ffitch</td>
          </tr>
          <tr>
            <td>University of Bath, Codemist, Ltd.</td>
          </tr>
          <tr>
            <td>Bath, UK</td>
          </tr>
          <tr>
            <td>May 1999</td>
          </tr>
        </table>
        <p>
    </p>
        <p>New in Csound version 3.54</p>
      </div>
    </div>
    <div class="navfooter">
      <hr />
      <table width="100%" summary="Navigation footer">
        <tr>
          <td width="40%" align="left"><a accesskey="p" href="lua_opcall.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="maca.html">Next</a></td>
        </tr>
        <tr>
          <td width="40%" align="left" valign="top">
            lua_opcall
         </td>
          <td width="20%" align="center">
            <a accesskey="h" href="index.html">Home</a>
          </td>
          <td width="40%" align="right" valign="top"> maca</td>
        </tr>
      </table>
    </div>
  </body>
</html>