All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.yamcs.xtce.LinearAdjusment Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs.xtce;

public class LinearAdjusment {
    double intercept = 0;
    double slope = 1;

    public LinearAdjusment(double intercept, double slope) {
        this.intercept = intercept;
        this.slope = slope;
    }

    public double getIntercept() {
        return intercept;
    }

    public double getSlope() {
        return slope;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy