-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathautocorr.xml
73 lines (63 loc) · 2.14 KB
/
autocorr.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<refentry id="autocorr">
<indexterm id="IndexAutocorr"><primary>autocorr</primary></indexterm>
<refentryinfo><title>Array Operations: Autocorrelation</title></refentryinfo>
<refmeta>
<refentrytitle>autocorr</refentrytitle>
</refmeta>
<refnamediv>
<refname>autocorr</refname>
<refpurpose>
Autocorrelation of a sequence.
</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<para>
This opcode takes in an input array and computes its autocorrelation.
</para>
</refsect1>
<refsect1>
<title>Syntax</title>
<synopsis>kout[] <command>autocorr</command> kin[]</synopsis>
</refsect1>
<refsect1>
<title>Performance</title>
<para>
<emphasis>kout[]</emphasis> -- output array containing the
autocorrelation output. It will be created if it does not exist.
</para>
<para>
<emphasis>kin[]</emphasis> -- input array containing the
sequence for autocorrelation.
</para>
</refsect1>
<refsect1>
<title>Examples</title>
<para>
Here is an example of the autocorr opcode. It uses the file
<ulink url="examples/autocorr.csd"><citetitle>autocorr.csd</citetitle></ulink>.</para>
<example>
<title>Example of the autocorr opcode.</title>
<para>See the sections <link linkend="UsingRealTime"><citetitle>Real-time Audio</citetitle></link> and <link linkend="CommandFlags"><citetitle>Command Line Flags</citetitle></link> for more information on using command line flags.</para>
<xi:include href="examples-xml/autocorr.csd.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
</example>
</refsect1>
<refsect1>
<title>See Also</title>
<para>
<link linkend="vectorial"><citetitle></citetitle>Vectorial opcodes</link>,
<link linkend="arrayOpcodes"><citetitle></citetitle>array opcodes</link>
</para>
</refsect1>
<refsect1>
<title>Credits</title>
<para>
<simplelist>
<member>Author: &namevictor;</member>
<member>NUI Maynooth</member>
<member>2021</member>
</simplelist>
</para>
<para>New in version 6.16</para>
</refsect1>
</refentry>