Examples of Signal


Examples of systole.domain.signals.Signal

     *
     * @param rawSignal The Segment inverted and normalized.
     * @return Signal
     */
    public Signal sliceSignal(Segment rawSignal) {
        Signal processed = new Signal();
        int relativeInitOfSegment = this.initOfSegment;
        Segment segment;
        int i = 0;
        while (relativeInitOfSegment < rawSignal.size()) {
            segment = this.obtainNextSegment(rawSignal, relativeInitOfSegment);
            processed.getSegments().add(segment);
            relativeInitOfSegment = relativeInitOfSegment + segment.size() + this.offset;
            i++;
        }
        return processed;
    }
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.