From: Natsumi K. <koi...@us...> - 2017-06-23 10:05:08
|
Update of /cvsroot/sp-tk/SPTK4/src In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv13773 Modified Files: ignorm.cc mgc2sp.cc nrand.cc Log Message: update usage of ignorm, mgc2sp and nrand Index: nrand.cc =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/nrand.cc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** nrand.cc 22 Jun 2017 06:25:50 -0000 1.6 --- nrand.cc 23 Jun 2017 10:05:06 -0000 1.7 *************** *** 67,75 **** *stream << " nrand [ options ] > stdout" << std::endl; *stream << " options:" << std::endl; ! *stream << " -l l : output length ( int)[" << std::setw(5) << std::right << kDefaultOutputLength << "][ <= l <= ]" << std::endl; // NOLINT ! *stream << " -s s : seed ( int)[" << std::setw(5) << std::right << kDefaultSeed << "][ <= s <= ]" << std::endl; // NOLINT ! *stream << " -m m : mean (double)[" << std::setw(5) << std::right << kDefaultMean << "][ <= m <= ]" << std::endl; // NOLINT ! *stream << " -v v : variance (double)[" << std::setw(5) << std::right << kDefaultStandardDeviation * kDefaultStandardDeviation << "][ <= v <= ]" << std::endl; // NOLINT ! *stream << " -d d : standard deviation (double)[" << std::setw(5) << std::right << kDefaultStandardDeviation << "][ <= d <= ]" << std::endl; // NOLINT *stream << " -h : print this message" << std::endl; *stream << " stdout:" << std::endl; --- 67,75 ---- *stream << " nrand [ options ] > stdout" << std::endl; *stream << " options:" << std::endl; ! *stream << " -l l : output length ( int)[" << std::setw(5) << std::right << kDefaultOutputLength << "][ <= l <= ]" << std::endl; // NOLINT ! *stream << " -s s : seed ( int)[" << std::setw(5) << std::right << kDefaultSeed << "][ <= s <= ]" << std::endl; // NOLINT ! *stream << " -m m : mean (double)[" << std::setw(5) << std::right << kDefaultMean << "][ <= m <= ]" << std::endl; // NOLINT ! *stream << " -v v : variance (double)[" << std::setw(5) << std::right << kDefaultStandardDeviation * kDefaultStandardDeviation << "][ 0.0 <= v <= ]" << std::endl; // NOLINT ! *stream << " -d d : standard deviation (double)[" << std::setw(5) << std::right << kDefaultStandardDeviation << "][ 0.0 <= d <= ]" << std::endl; // NOLINT *stream << " -h : print this message" << std::endl; *stream << " stdout:" << std::endl; Index: ignorm.cc =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/ignorm.cc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ignorm.cc 22 Jun 2017 06:25:50 -0000 1.6 --- ignorm.cc 23 Jun 2017 10:05:06 -0000 1.7 *************** *** 68,72 **** *stream << " -m m : order of generalized cepstrum ( int)[" << std::setw(5) << std::right << kDefaultNumOrder << "][ 0 <= m <= ]" << std::endl; // NOLINT *stream << " -g g : gamma (double)[" << std::setw(5) << std::right << kDefaultGamma << "][ <= g <= ]" << std::endl; // NOLINT ! *stream << " -c c : gamma = -1 / c ( int)[" << std::setw(5) << std::right << "N/A" << "][ 1 <= c <= ]" << std::endl; // NOLINT *stream << " -h : print this message" << std::endl; *stream << " infile:" << std::endl; --- 68,72 ---- *stream << " -m m : order of generalized cepstrum ( int)[" << std::setw(5) << std::right << kDefaultNumOrder << "][ 0 <= m <= ]" << std::endl; // NOLINT *stream << " -g g : gamma (double)[" << std::setw(5) << std::right << kDefaultGamma << "][ <= g <= ]" << std::endl; // NOLINT ! *stream << " -c c : gamma = -1 / c ( int)[" << std::setw(5) << std::right << "N/A" << "][ 1 <= c <= ]" << std::endl; // NOLINT *stream << " -h : print this message" << std::endl; *stream << " infile:" << std::endl; Index: mgc2sp.cc =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/mgc2sp.cc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** mgc2sp.cc 22 Jun 2017 06:25:50 -0000 1.7 --- mgc2sp.cc 23 Jun 2017 10:05:06 -0000 1.8 *************** *** 92,96 **** *stream << " mel-generalized cepstrum" << std::endl; *stream << " -u : regard input as multiplied by gamma ( bool)[" << std::setw(5) << std::right << sptk::ConvertBooleanToString(kDefaultMultiplicationFlag) << "]" << std::endl; // NOLINT ! *stream << " -l l : FFT size ( int)[" << std::setw(5) << std::right << kDefaultFftSize << "][ <= l <= ]" << std::endl; // NOLINT *stream << " -o o : output format ( int)[" << std::setw(5) << std::right << kDefaultOutputFormat << "][ 0 <= o <= 6 ]" << std::endl; // NOLINT *stream << " 0 (20*log|H(z)|)" << std::endl; --- 92,96 ---- *stream << " mel-generalized cepstrum" << std::endl; *stream << " -u : regard input as multiplied by gamma ( bool)[" << std::setw(5) << std::right << sptk::ConvertBooleanToString(kDefaultMultiplicationFlag) << "]" << std::endl; // NOLINT ! *stream << " -l l : FFT size ( int)[" << std::setw(5) << std::right << kDefaultFftSize << "][ 8 <= l <= ]" << std::endl; // NOLINT *stream << " -o o : output format ( int)[" << std::setw(5) << std::right << kDefaultOutputFormat << "][ 0 <= o <= 6 ]" << std::endl; // NOLINT *stream << " 0 (20*log|H(z)|)" << std::endl; |