Examples of PlotTimeSeries


Examples of ca.nengo.ui.actions.PlotTimeSeries

    public StandardAction getDefaultAction(TimeSeries data,
            String plotName,
            boolean applyFilterByDefault) {

        if (applyFilterByDefault) {
            return new PlotTimeSeries("Plot w/ filter", data, plotName, false,
                    getDefaultTauFilter(), getDefaultSubSampling());
        } else {
            return new PlotTimeSeries("Plot raw data", data, plotName, false, 0, 0);
        }

    }
View Full Code Here

Examples of ca.nengo.ui.actions.PlotTimeSeries

     * @return TODO
     */
    public Collection<StandardAction> getPlotActions(TimeSeries data, String plotName) {
        List<StandardAction> actions = new ArrayList<StandardAction>(2);

        actions.add(new PlotTimeSeries("Plot raw data", data, plotName, false, 0, 0));
        actions.add(new PlotTimeSeries("Plot w/ options", data, plotName, true,
                getDefaultTauFilter(), getDefaultSubSampling()));
        return actions;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.