public class Calibration
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
double |
cumulated_errror
cumulated error
|
double |
intercept
calibration intercept
|
double |
slope
calibration slope
|
double |
weighted_cumulated_error
weighted calibration error
|
Constructor and Description |
---|
Calibration(double slope,
double intercept,
double cumulated_errror,
double weighted_cumulated_error) |
Modifier and Type | Method and Description |
---|---|
boolean |
iscalibred()
return if a node is calibrated relying on the calibration parameters
an uncalibrated node is characterised by a 0 intercept, a Slope =1,, error =0
|
java.lang.String |
toString()
return a string with the calibration parameters
|
public double intercept
public double slope
public double weighted_cumulated_error
public double cumulated_errror
public Calibration(double slope, double intercept, double cumulated_errror, double weighted_cumulated_error)
slope
- slope of the regressionintercept
- intercept of the regressioncumulated_errror
- (multi-hops) errorsweighted_cumulated_error
- weighted (multi-hops) errorpublic boolean iscalibred()
public java.lang.String toString()
toString
in class java.lang.Object