Package systole.processor

Examples of systole.processor.SignalAnalyzer


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


                    if (!this.parentControl.isWaitingForClose()) {
                        this.doDerivatives(segment);
                    }
                    //Calculo de parámetros
                    SignalAnalyzer analyzer = new SignalAnalyzer(this.currentAnalysis.getSignalFrequency().getFrequency(), this.finalSignal, this.getHeartRate());
                    analysisResult = analyzer.calculateParameters();

                    this.processed = true;
                }
            }
        } catch (Exception e) {
View Full Code Here

TOP

Related Classes of systole.processor.SignalAnalyzer

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.