Skip to content

Commit

Permalink
deploy: d467392
Browse files Browse the repository at this point in the history
  • Loading branch information
tjingboem committed Sep 19, 2024
1 parent b4783ae commit d48d3e2
Show file tree
Hide file tree
Showing 552 changed files with 4,237 additions and 4,325 deletions.
16 changes: 8 additions & 8 deletions C.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,39 +39,39 @@ <h2>
</p>
</div>
<div class="refsect1">
<a id="idm393913"></a>
<a id="idm393886"></a>
<h2>Description</h2>
<p>
This statement switches automatic carrying of missing arguments on or off.
</p>
</div>
<div class="refsect1">
<a id="idm393916"></a>
<a id="idm393889"></a>
<h2>Syntax</h2>
<pre class="synopsis"><span class="command"><strong>C</strong></span> p1</pre>
</div>
<div class="refsect1">
<a id="idm393920"></a>
<a id="idm393893"></a>
<h2>Performance</h2>
<p>
<span class="emphasis"><em>p1</em></span> -- Specifies whether to switch off (value
0) or on (non-zero).
</p>
</div>
<div class="refsect1">
<a id="idm393924"></a>
<a id="idm393897"></a>
<h2>Examples</h2>
<p>
Here is an example of the C statement. It uses the file <a class="ulink" href="examples/b.csd" target="_top"><em class="citetitle">C.csd</em></a>.
</p>
<div class="example">
<a id="idm393929"></a>
<a id="idm393902"></a>
<p class="title">
<strong>Example 1272. Example of the C statement.</strong>
</p>
<div class="example-contents">
<div class="refsect1">
<a id="idm393931"></a>
<a id="idm393904"></a>
<pre class="programlisting">
<span class="nt">&lt;CsoundSynthesizer&gt;</span>

Expand Down Expand Up @@ -115,14 +115,14 @@ <h2>Examples</h2>
</p>
</div>
<div class="refsect1">
<a id="idm394045"></a>
<a id="idm394018"></a>
<h2>See Also</h2>
<p>
<a class="link" href="ScoreStatements.html" title="Score Statements"><em class="citetitle">Score Statements</em></a>
</p>
</div>
<div class="refsect1">
<a id="idm394050"></a>
<a id="idm394023"></a>
<h2>Credits</h2>
<p>
</p>
Expand Down
10 changes: 5 additions & 5 deletions CsBeats.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ <h2 class="title"><a id="CsBeats"></a>Csbeats</h2>
standard output.
</p>
<div class="refsect1">
<a id="idm434894"></a>
<a id="idm434866"></a>
<p>
The <span class="emphasis"><em>csbeats</em></span> language is very simple, having
only 5 kinds of statement, and only one of them has any
Expand Down Expand Up @@ -154,7 +154,7 @@ <h2 class="title"><a id="CsBeats"></a>Csbeats</h2>
</div>
</div>
<div class="refsect1">
<a id="idm434947"></a>
<a id="idm434919"></a>
<p>
The opening of Bach's Goldberg variation number 3 can be coded
as:
Expand Down Expand Up @@ -271,21 +271,21 @@ <h2 class="title"><a id="CsBeats"></a>Csbeats</h2>
</p>
</div>
<div class="refsect1">
<a id="idm434997"></a>
<a id="idm434969"></a>
<h2>A Complete Example</h2>
<p>
Here is a simple example of the <span class="emphasis"><em>csbeats</em></span>
score generator. It uses the file <a class="ulink" href="examples/csbeats.csd" target="_top"><em class="citetitle">csbeats.csd</em></a>.
</p>
<div class="example">
<a id="idm435003"></a>
<a id="idm434975"></a>
<p class="title">
<strong>Example 1373. A simple example of csbeats.</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>
<div class="refsect1">
<a id="idm435010"></a>
<a id="idm434982"></a>
<pre class="programlisting">
<span class="nt">&lt;CsoundSynthesizer&gt;</span>
<span class="nt">&lt;CsOptions&gt;</span>
Expand Down
14 changes: 7 additions & 7 deletions GEN01.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,19 @@ <h2>
</p>
</div>
<div class="refsect1">
<a id="idm397696"></a>
<a id="idm397669"></a>
<h2>Description</h2>
<p>
This subroutine transfers data from a soundfile into a function table.
</p>
</div>
<div class="refsect1">
<a id="idm397699"></a>
<a id="idm397672"></a>
<h2>Syntax</h2>
<pre class="synopsis"><span class="command"><strong>f</strong></span># time size 1 filcod skiptime format channel</pre>
</div>
<div class="refsect1">
<a id="idm397703"></a>
<a id="idm397676"></a>
<h2>Performance</h2>
<p>
<span class="emphasis"><em>size</em></span> -- number of points in the table. Ordinarily a power of 2 or a power-of-2 plus 1 (see <a class="link" href="f.html" title="f Statement (or Function Table Statement)"><em class="citetitle">f statement</em></a>); the maximum tablesize is 16777216 (2<sup>24</sup>) points. The allocation of table memory can be <span class="emphasis"><em>deferred</em></span> by setting this parameter to 0; the size allocated is then the number of points in the file (probably not a power-of-2), and the table is not usable by normal oscillators, but it is usable by a <a class="link" href="loscil.html" title="loscil"><em class="citetitle">loscil</em></a> unit. The soundfile can also be mono or stereo.
Expand Down Expand Up @@ -141,19 +141,19 @@ <h2>Performance</h2>
</div>
</div>
<div class="refsect1">
<a id="idm397749"></a>
<a id="idm397722"></a>
<h2>Examples</h2>
<p>
Here is an example of the GEN01 routine. It uses the files <a class="ulink" href="examples/gen01.csd" target="_top"><em class="citetitle">gen01.csd</em></a> and several sound files.
</p>
<div class="example">
<a id="idm397754"></a>
<a id="idm397727"></a>
<p class="title">
<strong>Example 1287. An example of the GEN01 routine.</strong>
</p>
<div class="example-contents">
<div class="refsect1">
<a id="idm397756"></a>
<a id="idm397729"></a>
<pre class="programlisting">
<span class="nt">&lt;CsoundSynthesizer&gt;</span>
<span class="nt">&lt;CsOptions&gt;</span>
Expand Down Expand Up @@ -240,7 +240,7 @@ <h2>Examples</h2>
</p>
</div>
<div class="refsect1">
<a id="idm398014"></a>
<a id="idm397987"></a>
<h2>Credits</h2>
<p>September 2003. Thanks goes to Dr. Richard Boulanger for
pointing out the references to the AIFF file format.</p>
Expand Down
16 changes: 8 additions & 8 deletions GEN02.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,19 @@ <h2>
</p>
</div>
<div class="refsect1">
<a id="idm398026"></a>
<a id="idm397999"></a>
<h2>Description</h2>
<p>
This subroutine transfers data from immediate pfields into a function table.
</p>
</div>
<div class="refsect1">
<a id="idm398029"></a>
<a id="idm398002"></a>
<h2>Syntax</h2>
<pre class="synopsis"><span class="command"><strong>f</strong></span> # time size 2 v1 v2 v3 ...</pre>
</div>
<div class="refsect1">
<a id="idm398033"></a>
<a id="idm398006"></a>
<h2>Initialization</h2>
<p>
<span class="emphasis"><em>size</em></span> -- number of points in the table.
Expand Down Expand Up @@ -93,21 +93,21 @@ <h2>Initialization</h2>
</div>
</div>
<div class="refsect1">
<a id="idm398043"></a>
<a id="idm398016"></a>
<h2>Examples</h2>
<p>
Here is an example of the GEN02 routine. It uses the files <a class="ulink" href="examples/gen02.csd" target="_top"><em class="citetitle">gen02.csd</em></a>.

</p>
<div class="example">
<a id="idm398048"></a>
<a id="idm398021"></a>
<p class="title">
<strong>Example 1288. Example of the GEN02 routine.</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>
<div class="refsect1">
<a id="idm398055"></a>
<a id="idm398028"></a>
<pre class="programlisting">
<span class="nt">&lt;CsoundSynthesizer&gt;</span>
<span class="nt">&lt;CsOptions&gt;</span>
Expand Down Expand Up @@ -186,14 +186,14 @@ <h2>Examples</h2>
</p>
</div>
<div class="refsect1">
<a id="idm398290"></a>
<a id="idm398263"></a>
<h2>See Also</h2>
<p>
<a class="link" href="GEN17.html" title="GEN17"><em class="citetitle">GEN17</em></a>
</p>
</div>
<div class="refsect1">
<a id="idm398295"></a>
<a id="idm398268"></a>
<h2>Credits</h2>
<p>December 2002. Thanks to Rasmus Ekman, corrected the limit
of the <span class="emphasis"><em>PMAX</em></span> variable.</p>
Expand Down
14 changes: 7 additions & 7 deletions GEN03.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,19 @@ <h2>
</p>
</div>
<div class="refsect1">
<a id="idm398308"></a>
<a id="idm398281"></a>
<h2>Description</h2>
<p>
This subroutine generates a stored function table by evaluating a polynomial in x over a fixed interval and with specified coefficients.
</p>
</div>
<div class="refsect1">
<a id="idm398311"></a>
<a id="idm398284"></a>
<h2>Syntax</h2>
<pre class="synopsis"><span class="command"><strong>f</strong></span> # time size 3 xval1 xval2 c0 c1 c2 ... cn</pre>
</div>
<div class="refsect1">
<a id="idm398315"></a>
<a id="idm398288"></a>
<h2>Initialization</h2>
<p>
<span class="emphasis"><em>size </em></span> -- number of points in the table. Must be a power of 2 or a power-of-2 plus 1.
Expand Down Expand Up @@ -104,20 +104,20 @@ <h2>Initialization</h2>
</div>
</div>
<div class="refsect1">
<a id="idm398354"></a>
<a id="idm398327"></a>
<h2>Examples</h2>
<p>
Here is an example of the GEN03 generator. It uses the file <a class="ulink" href="examples/gen03.csd" target="_top"><em class="citetitle">gen03.csd</em></a>.
</p>
<div class="example">
<a id="idm398359"></a>
<a id="idm398332"></a>
<p class="title">
<strong>Example 1289. Example of the GEN03 generator.</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>
<div class="refsect1">
<a id="idm398366"></a>
<a id="idm398339"></a>
<pre class="programlisting">
<span class="nt">&lt;CsoundSynthesizer&gt;</span>
<span class="nt">&lt;CsOptions&gt;</span>
Expand Down Expand Up @@ -238,7 +238,7 @@ <h2>Examples</h2>
</p>
</div>
<div class="refsect1">
<a id="idm398897"></a>
<a id="idm398870"></a>
<h2>See Also</h2>
<p>
<a class="link" href="GEN13.html" title="GEN13"><em class="citetitle">GEN13</em></a>,
Expand Down
12 changes: 6 additions & 6 deletions GEN04.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,19 @@ <h2>
</p>
</div>
<div class="refsect1">
<a id="idm398917"></a>
<a id="idm398890"></a>
<h2>Description</h2>
<p>
This subroutine generates a normalizing function by examining the contents of an existing table.
</p>
</div>
<div class="refsect1">
<a id="idm398920"></a>
<a id="idm398893"></a>
<h2>Syntax</h2>
<pre class="synopsis"><span class="command"><strong>f</strong></span> # time size 4 source# sourcemode</pre>
</div>
<div class="refsect1">
<a id="idm398924"></a>
<a id="idm398897"></a>
<h2>Initialization</h2>
<p>
<span class="emphasis"><em>size</em></span> -- number of points in the table. Should be power-of-2 plus 1. Must not exceed (except by 1) the size of the source table being examined; limited to just half that size if the sourcemode is of type offset (see below).
Expand Down Expand Up @@ -101,19 +101,19 @@ <h2>Initialization</h2>
</div>
</div>
<div class="refsect1">
<a id="idm398944"></a>
<a id="idm398917"></a>
<h2>Examples</h2>
<p>
Here is a simple example of the GEN04 routine. It uses the files <a class="ulink" href="examples/gen04.csd" target="_top"><em class="citetitle">gen04.csd</em></a>.
</p>
<div class="example">
<a id="idm398949"></a>
<a id="idm398922"></a>
<p class="title">
<strong>Example 1290. An example of the GEN04 routine.</strong>
</p>
<div class="example-contents">
<div class="refsect1">
<a id="idm398951"></a>
<a id="idm398924"></a>
<pre class="programlisting">
<span class="nt">&lt;CsoundSynthesizer&gt;</span>
<span class="nt">&lt;CsOptions&gt;</span>
Expand Down
14 changes: 7 additions & 7 deletions GEN05.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,19 @@ <h2>
</p>
</div>
<div class="refsect1">
<a id="idm399345"></a>
<a id="idm399318"></a>
<h2>Description</h2>
<p>
Constructs functions from segments of exponential curves.
</p>
</div>
<div class="refsect1">
<a id="idm399348"></a>
<a id="idm399321"></a>
<h2>Syntax</h2>
<pre class="synopsis"><span class="command"><strong>f</strong></span> # time size 5 a n1 b n2 c ...</pre>
</div>
<div class="refsect1">
<a id="idm399352"></a>
<a id="idm399325"></a>
<h2>Initialization</h2>
<p>
<span class="emphasis"><em>size </em></span> -- number of points in the table. Must be a power of 2 or power-of-2 plus 1 (see <a class="link" href="f.html" title="f Statement (or Function Table Statement)"><em class="citetitle">f statement</em></a>).
Expand Down Expand Up @@ -105,19 +105,19 @@ <h2>Initialization</h2>
</div>
</div>
<div class="refsect1">
<a id="idm399377"></a>
<a id="idm399350"></a>
<h2>Examples</h2>
<p>
Here is a simple example of the GEN05 routine. It uses the files <a class="ulink" href="examples/gen05.csd" target="_top"><em class="citetitle">gen05.csd</em></a>.
</p>
<div class="example">
<a id="idm399382"></a>
<a id="idm399355"></a>
<p class="title">
<strong>Example 1291. An example of the GEN05 routine.</strong>
</p>
<div class="example-contents">
<div class="refsect1">
<a id="idm399384"></a>
<a id="idm399357"></a>
<pre class="programlisting">
<span class="nt">&lt;CsoundSynthesizer&gt;</span>
<span class="nt">&lt;CsOptions&gt;</span>
Expand Down Expand Up @@ -187,7 +187,7 @@ <h2>Examples</h2>
</p>
</div>
<div class="refsect1">
<a id="idm399592"></a>
<a id="idm399565"></a>
<h2>See Also</h2>
<p>
<a class="link" href="GEN06.html" title="GEN06"><em class="citetitle">GEN06</em></a>,
Expand Down
Loading

0 comments on commit d48d3e2

Please sign in to comment.