Package systole.processor.filters

Examples of systole.processor.filters.RemezEquiripple


        FilterSettings newSettings = new FilterSettings();
        newSettings.createDefault(this.logic.getAnalysis().getSignalFrequency().getFrequency().doubleValue());
        newSettings.setDefaultIterations(iterations);
        newSettings.setFilt(new LowPass(newSettings.getFilt().getSamplingPeriod(), (new Double(cutoff)).doubleValue()));
        newSettings.setFConfig(newSettings.getFilt().config(order, atten, ripple, trband));
        newSettings.setFAlg(new RemezEquiripple());

        return newSettings;
    }
View Full Code Here

TOP

Related Classes of systole.processor.filters.RemezEquiripple

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.