Package ips.incubator.dsp
Interface FormantEstimator
- 
- All Known Implementing Classes:
- LPCFormantEstimator
 
 public interface FormantEstimator- Author:
- klausj
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.Double>estimateFormantFrequencies(double[] x, double sampleRate)java.util.List<java.lang.Double>estimateFormantFrequencies(double[] x, int nrFormants)org.apache.commons.math3.complex.Complex[]estimatePoles(double[] x, double sampleRate)org.apache.commons.math3.complex.Complex[]estimatePoles(double[] x, int nrPoles)
 
- 
- 
- 
Method Detail- 
estimatePolesorg.apache.commons.math3.complex.Complex[] estimatePoles(double[] x, int nrPoles)
 - 
estimatePolesorg.apache.commons.math3.complex.Complex[] estimatePoles(double[] x, double sampleRate)
 - 
estimateFormantFrequenciesjava.util.List<java.lang.Double> estimateFormantFrequencies(double[] x, int nrFormants)
 - 
estimateFormantFrequenciesjava.util.List<java.lang.Double> estimateFormantFrequencies(double[] x, double sampleRate)
 
- 
 
-