Package systole.domain.analysis.results

Examples of systole.domain.analysis.results.ParameterAOS


        //Multiplico por el periodo de muestreo para que me escale de "muestras" a "milisegundos"
        BigDecimal xPos = this.k.multiply(new BigDecimal(posOfFirstFifty));
        BigDecimal yPos = this.k.multiply(new BigDecimal(posOfNextFifty));

        ParameterAOS param = new ParameterAOS();

        param.setInitPos(new ParameterCoord(xPos, SignalAnalyzer.FIFTY));
        param.setEndPos(new ParameterCoord(yPos, SignalAnalyzer.FIFTY));

        return (param);
    }
View Full Code Here


        //return (cor.isNaN() ? 0 : cor.doubleValue());
    }

    protected BigDecimal correlationByAOS(Segment segment) {

        ParameterAOS aos = this.patternAnalysis.getAos();

        // tomo los puntos de AOS
        int initOfIAR = aos.getInitPos().getxCoord().intValue();
        int endOfIAR = aos.getEndPos().getxCoord().intValue();

        // calculo la correlación de esa sección
        return this.correlate(segment, initOfIAR, endOfIAR);

        //return (cor.isNaN() ? 0 : cor.doubleValue());
View Full Code Here

     * @param initPoint
     * @param endPoint
     */
    public void updateAOS(ParameterCoord initPoint, ParameterCoord endPoint) {
        if (this.currentResults.getAos() == null) {
            this.currentResults.setAos(new ParameterAOS());
        }
        this.markAsDirty();
        this.currentResults.getAos().setInitPos(initPoint);
        this.currentResults.getAos().setEndPos(endPoint);
        this.setChanged();
View Full Code Here

TOP

Related Classes of systole.domain.analysis.results.ParameterAOS

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.