Package systole.processor

Examples of systole.processor.SignalProcessor


     *
     * @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


    protected Void doInBackground() {

        try {
            if ((this.parentControl.getSelectionModel().getSelectedSegments() != null)) {

                SignalProcessor processor = new SignalProcessor();
                //Returns a signal composed by the selected segments
                Segment segment = processor.process(this.parentControl.getSelectionModel().getSelectedSegments());

                if ((segment != null) && (!segment.isEmpty())) {

                    if (!this.parentControl.isWaitingForClose()) {
                        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.processor.SignalProcessor

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.