Package systole.math

Examples of systole.math.SimpleDerivative


     * @param segment
     */
    public CorrelationByResult(Segment segment) {
        super(segment);
        SignalProcessor processor = new SignalProcessor();
        FinalSignal finalSignal = processor.calcDerivatives(segment, new SimpleDerivative());
        SignalAnalyzer analyzer = new SignalAnalyzer(BigDecimal.ONE, finalSignal, 0);
        this.patternAnalysis = analyzer.calculateParameters();
    }
View Full Code Here


                        this.doCharts(segment);
                    }

                    segment = segment.normalize();

                    finalSignal = processor.calcDerivatives(segment, new SimpleDerivative());

                    if (!this.parentControl.isWaitingForClose()) {
                        this.doDerivatives(segment);
                    }
                    //Calculo de parámetros
View Full Code Here

TOP

Related Classes of systole.math.SimpleDerivative

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.