Skip to content

Commit

Permalink
fix example
Browse files Browse the repository at this point in the history
  • Loading branch information
takenori-y committed Jul 23, 2024
1 parent ff42882 commit ce07f16
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 11 deletions.
8 changes: 8 additions & 0 deletions src/main/iltcdf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,14 @@ void PrintUsage(std::ostream* stream) {
* - @b stdout
* - double-type output sequence
*
* In the below example, an excitaion signal generated from pitch information is
* reconstructed using the synthesis and analysis filters built from PARCOR
* coefficients.
*
* @code{.sh}
* excite < data.pitch | ltcdf data.rc | iltcdf data.rc > data.e
* @endcode
*
* @param[in] argc Number of arguments.
* @param[in] argv Argument vector.
* @return 0 on success, 1 on failure.
Expand Down
4 changes: 2 additions & 2 deletions src/main/lspdf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ void PrintUsage(std::ostream* stream) {
* - @b stdout
* - double-type output sequence
*
* In the below example, an exciation signal generated from pitch information is
* passed through the synthesis filter built from LSP coefficients.
* In the below example, an excitation signal generated from pitch information
* is passed through the synthesis filter built from LSP coefficients.
*
* @code{.sh}
* excite < data.pitch | lspdf data.lsp > data.syn
Expand Down
4 changes: 2 additions & 2 deletions src/main/ltcdf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ void PrintUsage(std::ostream* stream) {
* - @b stdout
* - double-type output sequence
*
* In the below example, an exciation signal generated from pitch information is
* passed through the synthesis filter built from PARCOR coefficients.
* In the below example, an excitation signal generated from pitch information
* is passed through the synthesis filter built from PARCOR coefficients.
*
* @code{.sh}
* excite < data.pitch | ltcdf data.rc > data.syn
Expand Down
4 changes: 2 additions & 2 deletions src/main/mglsadf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ class InputSourcePreprocessingForMelCepstrum
* - @b stdout
* - double-type output sequence
*
* In the below example, an exciation signal generated from pitch information is
* passed through the MLSA filter built from mel-cepstral coefficients
* In the below example, an excitation signal generated from pitch information
* is passed through the MLSA filter built from mel-cepstral coefficients
* @c data.mcep.
*
* @code{.sh}
Expand Down
4 changes: 2 additions & 2 deletions src/main/poledf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ void PrintUsage(std::ostream* stream) {
* - @b stdout
* - double-type output sequence
*
* In the below example, an exciation signal generated from pitch information is
* passed through the standard form synthesis filter built from LPC
* In the below example, an excitation signal generated from pitch information
* is passed through the standard form synthesis filter built from LPC
* coefficients.
*
* @code{.sh}
Expand Down
6 changes: 3 additions & 3 deletions src/main/zerodf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ void PrintUsage(std::ostream* stream) {
* - @b stdout
* - double-type output sequence
*
* In the below example, an exciation signal generated from pitch information is
* passed through the standard form synthesis filter built from FIR filter
* In the below example, an excitation signal generated from pitch information
* is passed through the standard form synthesis filter built from FIR filter
* coefficients.
*
* @code{.sh}
* excite < data.pitch | poledf data.fir > data.syn
* excite < data.pitch | zerodf data.b > data.syn
* @endcode
*
* @param[in] argc Number of arguments.
Expand Down

0 comments on commit ce07f16

Please sign in to comment.