Go to the source code of this file.
|
| kaldi |
| This code computes Goodness of Pronunciation (GOP) and extracts phone-level pronunciation feature for mispronunciations detection tasks, the reference:
|
|
|
template<typename Real > |
void | ComplexMul (const Real &a_re, const Real &a_im, Real *b_re, Real *b_im) |
| ComplexMul implements, inline, the complex multiplication b *= a. More...
|
|
template<typename Real > |
void | ComplexAddProduct (const Real &a_re, const Real &a_im, const Real &b_re, const Real &b_im, Real *c_re, Real *c_im) |
| ComplexMul implements, inline, the complex operation c += (a * b). More...
|
|
template<typename Real > |
void | ComplexImExp (Real x, Real *a_re, Real *a_im) |
| ComplexImExp implements a <– exp(i x), inline. More...
|
|