From: fujishita t. <fjs...@us...> - 2017-07-25 10:47:28
|
Update of /cvsroot/sp-tk/SPTK/doc/ref_e In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv916 Modified Files: main.tex Makefile.in Added Files: csm2acr.tex Log Message: add manual of csm2acr command Index: Makefile.in =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/Makefile.in,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** Makefile.in 23 Jun 2017 05:44:34 -0000 1.35 --- Makefile.in 25 Jul 2017 10:47:26 -0000 1.36 *************** *** 68,72 **** cdist.tex \ clip.tex \ ! csm2lpc.tex \ da.tex \ dct.tex \ --- 68,72 ---- cdist.tex \ clip.tex \ ! csm2acr.tex \ da.tex \ dct.tex \ --- NEW FILE: csm2acr.tex --- % ----------------------------------------------------------------- % % The Speech Signal Processing Toolkit (SPTK) % % developed by SPTK Working Group % % http://sp-tk.sourceforge.net/ % % ----------------------------------------------------------------- % % % % Copyright (c) 1984-2007 Tokyo Institute of Technology % % Interdisciplinary Graduate School of % % Science and Engineering % % % % 1996-2016 Nagoya Institute of Technology % % Department of Computer Science % % % % All rights reserved. % % % % Redistribution and use in source and binary forms, with or % % without modification, are permitted provided that the following % % conditions are met: % % % % - Redistributions of source code must retain the above copyright % % notice, this list of conditions and the following disclaimer. % % - Redistributions in binary form must reproduce the above % % copyright notice, this list of conditions and the following % % disclaimer in the documentation and/or other materials provided % % with the distribution. % % - Neither the name of the SPTK working group nor the names of its % % contributors may be used to endorse or promote products derived % % from this software without specific prior written permission. % % % % THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND % % CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, % % INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF % % MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE % % DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS % % BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, % % EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED % % TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, % % DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON % % ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, % % OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY % % OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE % % POSSIBILITY OF SUCH DAMAGE. % % ----------------------------------------------------------------- % \hypertarget{csm2acr}{} \name{csm2acr}{transform CSM to autocorrelation}{speech parameter transformation} \begin{synopsis} \item [csm2acr] [ --m $M$ ] [ {\em infile} ] \end{synopsis} \begin{qsection}{DESCRIPTION} {\em csm2acr} calculates autocorrelation coefficients from $M$-th order composite sinusoidal modeling (CSM) parameters from {\em infile} (or standard input), sending the result to standard output. The CSM input format is \begin{displaymath} \omega(1), \dots , \omega\biggl(\frac{M+1}{2}\biggr), m(1), \dots , m\biggl(\frac{M+1}{2}\biggr). \end{displaymath} The autocorrelation function $r(k)$ is obtained from the CSM parameters: \begin{displaymath} r(k)=\sum_{i=1}^{\frac{M+1}{2}}m(i)\cos(k\cdot\omega(i)), \qquad k=0,1,\dots,M, \end{displaymath} And the output is the following autocorrelation coefficients, \begin{displaymath} r(0) , r(1), \dots , r(M). \end{displaymath} Both input and output files are in float format. \end{qsection} \begin{options} \argm{m}{M}{order of autocorrelation}{25} \end{options} \begin{qsection}{EXAMPLE} In the example below, 15-th order CSM coefficients in float format are read from {\em data.csm}, and then the autocorrelation coefficients are written to {\em data.acorr}: \begin{quote} \verb! csm2acr -m 15 data.csm > data.acorr! \end{quote} \end{qsection} \begin{qsection}{SEE ALSO} \hyperlink{acorr}{acorr}, \hyperlink{acr2csm}{acr2csm} \end{qsection} Index: main.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/main.tex,v retrieving revision 1.57 retrieving revision 1.58 diff -C2 -d -r1.57 -r1.58 *** main.tex 23 Jun 2017 05:44:34 -0000 1.57 --- main.tex 25 Jul 2017 10:47:26 -0000 1.58 *************** *** 183,187 **** \include{cdist} \include{clip} ! \include{csm2lpc} \include{da} %\include{dawrite} --- 183,187 ---- \include{cdist} \include{clip} ! \include{csm2acr} \include{da} %\include{dawrite} |