Package de.maramuse.mapac.predictor.linear

Examples of de.maramuse.mapac.predictor.linear.LinearPredictor


    public static final int FFT1024=4;
    public static final int FFT4096=5;
   
    private Predictor[] predictors=new Predictor[32];
    public Predictors(){
  predictors[LINEAR]=new LinearPredictor();
  predictors[CUBIC]=new CubicPredictor();
  predictors[FFT64]=new FFTPredictor(64);
  predictors[FFT256]=new FFTPredictor(256);
  predictors[FFT1024]=new FFTPredictor(1024);
  predictors[FFT4096]=new FFTPredictor(4096);
View Full Code Here

TOP

Related Classes of de.maramuse.mapac.predictor.linear.LinearPredictor

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.