diff options
author | Brijeshcr | 2017-11-30 20:21:36 +0530 |
---|---|---|
committer | Brijeshcr | 2017-11-30 20:21:36 +0530 |
commit | 9d18f39d1775acd7f96e2388b186bb15068ff910 (patch) | |
tree | 7dc4d248208dd3ea7dac6e4ffb056f9b16a601eb /help/en_US/rceps.xml | |
parent | c257cd7a7e766fb89332cca4fb367904767362ed (diff) | |
parent | 14d0ad8d846d12b3c82b0b5bc4ffd4d1360ec288 (diff) | |
download | FOSSEE-Signal-Processing-Toolbox-9d18f39d1775acd7f96e2388b186bb15068ff910.tar.gz FOSSEE-Signal-Processing-Toolbox-9d18f39d1775acd7f96e2388b186bb15068ff910.tar.bz2 FOSSEE-Signal-Processing-Toolbox-9d18f39d1775acd7f96e2388b186bb15068ff910.zip |
Merge and solve ifft2 conflict
Diffstat (limited to 'help/en_US/rceps.xml')
-rw-r--r-- | help/en_US/rceps.xml | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/help/en_US/rceps.xml b/help/en_US/rceps.xml index 2a11479..fbf1ce8 100644 --- a/help/en_US/rceps.xml +++ b/help/en_US/rceps.xml @@ -17,7 +17,34 @@ <refnamediv> <refname>rceps</refname> - <refpurpose></refpurpose> + <refpurpose>Produce the cepstrum of the signal x, and if desired, the minimum phase reconstruction of the signal x.</refpurpose> </refnamediv> + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + [y, xm] = rceps(x) + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>x:</term> + <listitem><para> real or complex vector input</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +f0 = 70; Fs = 10000; # 100 Hz fundamental, 10kHz sampling rate +a = poly (0.985 * exp (1i*pi*[0.1, -0.1, 0.3, -0.3])); # two formants +s = 0.005 * randn (1024, 1); # Noise excitation signal +s(1:Fs/f0:length(s)) = 1; # Impulse glottal wave +x = filter (1, a, s); # Speech signal in x +[y, xm] = rceps (x .* hanning (1024)); # cepstrum and min phase reconstruction + ]]></programlisting> +</refsection> </refentry> |