lpcgetpitches

Return a list of frequency values from a LPC (Linear Predictive Coding) analysis data file.


Synopsis

pchvals = lpcgetpitches(“lpc_analysis_filename”, npoles_guess, firstFrame, lastFrame [,error_threshold])


Description

lpcgetpitches will retrieve a list (array) of frequency values from an LPC analysis file, most likely created by the MiXViews program. Any subset of the total frames may be retrieved as well as all of them.


Arguments

Examples

pitcharray = lpcgetpitches("/some/LPC/analysis_file.lpc", 0, 0, 20)
for (i = 0; i < 20; ++i) {
	printf("Pitch[%d] is %f CPS\n", i, pitcharray[i]);
}

See Also

lpcgetamps, LPCPLAY