Home
last modified time | relevance | path

Searched refs:icand2 (Results 1 – 8 of 8) sorted by relevance

/dports/audio/praat/praat-6.2.03/melder/
H A DNUMinterpol.cpp187 double (*getTransitionCost) (integer iframe, integer icand1, integer icand2, void *closure), in NUM_viterbi() argument
200 for (integer icand2 = 1; icand2 <= numberOfCandidates [iframe]; icand2 ++) { in NUM_viterbi() local
204 const double value = delta [iframe - 1] [icand1] + delta [iframe] [icand2] in NUM_viterbi()
205 - getTransitionCost (iframe, icand1, icand2, closure); in NUM_viterbi()
213 delta [iframe] [icand2] = maximum; in NUM_viterbi()
214 psi [iframe] [icand2] = place; in NUM_viterbi()
242 …double (*getTransitionCost) (integer iframe, integer icand1, integer icand2, integer itrack, void …
276 …double (*getTransitionCost) (integer iframe, integer icand1, integer icand2, integer itrack, void … in NUM_viterbi_multi() argument
H A DNUMinterpol.h46 double (*getTransitionCost) (integer iframe, integer icand1, integer icand2, void *closure),
53 …double (*getTransitionCost) (integer iframe, integer icand1, integer icand2, integer itrack, void …
/dports/audio/praat/praat-6.2.03/fon/
H A DPitch.cpp573 for (integer icand2 = 1; icand2 <= curFrame -> nCandidates; icand2 ++) {
574 const double f2 = curFrame -> candidates [icand2]. frequency;
609 value = prevDelta [icand1] - transitionCost + curDelta [icand2];
620 U", current candidate ", icand2,
625 curDelta [icand2] = maximum;
626 curPsi [icand2] = place;
H A DFormant.cpp463 static double getTransitionCost (integer iframe, integer icand1, integer icand2, integer /* itrack … in getTransitionCost() argument
466 if (icand1 > prevFrame -> numberOfFormants || icand2 > curFrame -> numberOfFormants) in getTransitionCost()
469 const double f2 = curFrame -> formant [icand2]. frequency; in getTransitionCost()
/dports/audio/praat/praat-6.2.03/gram/
H A DOTMulti.h42 int OTMulti_compareCandidates (OTMulti me, integer icand1, integer icand2);
H A DOTGrammar.h44 …reCandidates (OTGrammar me, integer itab1, integer icand1, integer itab2, integer icand2) noexcept;
H A DOTMulti.cpp194 int OTMulti_compareCandidates (OTMulti me, integer icand1, integer icand2) {
196 INTVEC marks2 = my candidates [icand2]. marks.get();
H A DOTGrammar.cpp385 …eCandidates (OTGrammar me, integer itab1, integer icand1, integer itab2, integer icand2) noexcept { in OTGrammar_compareCandidates() argument
387 INTVEC marks2 = my tableaus [itab2]. candidates [icand2]. marks.get(); in OTGrammar_compareCandidates()