summaryrefslogtreecommitdiff
path: root/help/en_US/xcov1.xml
diff options
context:
space:
mode:
authorAbhinav Dronamraju2017-11-27 15:25:37 +0530
committerAbhinav Dronamraju2017-11-27 15:25:37 +0530
commitb7969c62478edc84055e71df9fed140402406396 (patch)
tree048b7c76423fe27dee2e31a52bae93c95883614e /help/en_US/xcov1.xml
parent2bb28947f9736c1c65dd338bf1bc8fcc2570b22d (diff)
parentd972a68bc5b3c4c059b70e4f8cd64a64538c2be8 (diff)
downloadFOSSEE-Signal-Processing-Toolbox-b7969c62478edc84055e71df9fed140402406396.tar.gz
FOSSEE-Signal-Processing-Toolbox-b7969c62478edc84055e71df9fed140402406396.tar.bz2
FOSSEE-Signal-Processing-Toolbox-b7969c62478edc84055e71df9fed140402406396.zip
Merge with upstream
Diffstat (limited to 'help/en_US/xcov1.xml')
-rw-r--r--help/en_US/xcov1.xml43
1 files changed, 42 insertions, 1 deletions
diff --git a/help/en_US/xcov1.xml b/help/en_US/xcov1.xml
index 7a866bb..3872563 100644
--- a/help/en_US/xcov1.xml
+++ b/help/en_US/xcov1.xml
@@ -17,7 +17,48 @@
<refnamediv>
<refname>xcov1</refname>
- <refpurpose></refpurpose>
+ <refpurpose>Compute covariance at various lags [=correlation(x-mean(x),y-mean(y))].</refpurpose>
</refnamediv>
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ [R, lag] = xcov (X)
+ ... = xcov (X, Y)
+ ... = xcov (..., maxlag)
+ ... = xcov (..., scale)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>X:</term>
+ <listitem><para> Input vector</para></listitem></varlistentry>
+ <varlistentry><term>Y:</term>
+ <listitem><para> if specified, compute cross-covariance between X and Y, otherwise compute autocovariance of X.</para></listitem></varlistentry>
+ <varlistentry><term>maxlag:</term>
+ <listitem><para> is specified, use lag range [-maxlag:maxlag], otherwise use range [-n+1:n-1].</para></listitem></varlistentry>
+ <varlistentry><term>scale:</term>
+ <listitem><para> </para></listitem></varlistentry>
+ <varlistentry><term>'biased':</term>
+ <listitem><para> for covariance=raw/N,</para></listitem></varlistentry>
+ <varlistentry><term>'unbiased':</term>
+ <listitem><para> for covariance=raw/(N-|lag|),</para></listitem></varlistentry>
+ <varlistentry><term>'coeff':</term>
+ <listitem><para> for covariance=raw/(covariance at lag 0),</para></listitem></varlistentry>
+ <varlistentry><term>'none':</term>
+ <listitem><para> for covariance=raw</para></listitem></varlistentry>
+ <varlistentry><term>'none':</term>
+ <listitem><para> is the default.</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+Compute covariance at various lags [=correlation(x-mean(x),y-mean(y))]. Returns the covariance for each lag in the range, plus an optional vector of lags.
+</para>
+</refsection>
</refentry>