Package org.vocvark.jAudioTools

Examples of org.vocvark.jAudioTools.FFT


     */
    public double[] extractFeature(double[] samples,
                                   double sampling_rate,
                                   double[][] other_feature_values)
            throws Exception {
        FFT fft = new FFT(samples, null, false, true);
        return fft.getMagnitudeSpectrum();
    }
View Full Code Here


     */
    public double[] extractFeature(double[] samples,
                                   double sampling_rate,
                                   double[][] other_feature_values)
            throws Exception {
        FFT fft = new FFT(samples, null, false, true);
        return fft.getPowerSpectrum();
    }
View Full Code Here

TOP

Related Classes of org.vocvark.jAudioTools.FFT

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.