manual_DataModeler.cpp 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* manual_DataModeler.cpp
  2. *
  3. * Copyright (C) 2014 David Weenink
  4. *
  5. * This code is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * This code is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this work. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. /*
  19. djmw 20101009 Initial version
  20. */
  21. #include "ManPagesM.h"
  22. void manual_DataModeler (ManPages me);
  23. void manual_DataModeler (ManPages me)
  24. {
  25. MAN_BEGIN (U"FormantModeler: Get residual sum of squares...", U"djmw", 20140421)
  26. INTRO (U"Get the residual sum of squares for a formant in the selected FormantModeler.")
  27. NORMAL (U"The residual sum of squares, RSS, is defined as follows")
  28. FORMULA (U"RSS = \\su__i=1_^^n^ (%f__%i_ - %F__%i_)^^2^,")
  29. NORMAL (U"where %f__%i_ is the frequency value of the %i-ith data point, %F__%i_ is the frequency at the i-data point as estimated by the model and %n is the number of data points.")
  30. MAN_END
  31. MAN_BEGIN (U"Formants: Extract smoothest part (constrained)...", U"djmw", 20140424)
  32. NORMAL (U"Extracts the best matching part from the slected @@formant|Formant@s.")
  33. ENTRY (U"Settings")
  34. TAG (U"##Minimum F1 (Hz)")
  35. DEFINITION (U"suppresses models whose average first formant frequency, %f1, is below %%minimumF1% by a factor sqrt (%minimumF1 - %f1 + 1). You can use this constraint to disfavour models with a low average first formant. Sometimes due to the generally high frequency of the /a/ a lower harmonic of the fundamental frequency is taken as a candidate for the first formant. You can suppress these models with this constraint.")
  36. TAG (U"##Maximum F1 (Hz)")
  37. DEFINITION (U"suppresses models whose average first formant frequency, %f1, is above %%maximumF1% by a factor sqrt (%f1 - %%maximumF1% + 1).You can use this constraint to disfavour models in which the first formant is missing. ")
  38. TAG (U"##Minimum F2 (Hz)")
  39. DEFINITION (U"suppresses models whose average second formant frequency, %f2, is below %%minimumF2% by a factor sqrt (%minimumF2 - %f2 + 1). This constraint might be used for high front vowels that normally have a large distance between the first and second formant. ")
  40. TAG (U"##Maximum F2 (Hz)")
  41. DEFINITION (U"suppresses models whose average second formant frequency, %f2, is above %%maximumF2% by a factor sqrt (%f2 - %%maximumF2% + 1). This factor is sometimes necessary to suppress models for high back vowels where the second formant is \"missing\", i.e. where the third formant is playing the role of the second. ")
  42. TAG (U"##Minimum F3 (Hz)")
  43. DEFINITION (U"suppress models whose average third formant frequency, %%f3%, is below %%minimumF3% by a factor sqrt (%%minimumF3% - %%f3% + 1). This constraint might sometimes be usefull to suppress low lying third formants that can occur for /a/-like vowels.")
  44. MAN_END
  45. MAN_BEGIN (U"Buse (1973)", U"djmw", 20140328)
  46. NORMAL (U"A. Buse (1973): \"Goodness of fit in generalized least squares estimation.\", %%The American Statistician% #27: 106\\--108.")
  47. MAN_END
  48. }
  49. /* End of file manual_HMM.cpp */