Home | History | Annotate | Download | only in estimation

Lines Matching refs:weight

59     /** Measurement weight. */
60 private final double weight;
72 * @param weight weight of the measurement in the least squares problem
79 public WeightedMeasurement(double weight, double measuredValue) {
80 this.weight = weight;
89 * @param weight weight of the measurement in the least squares problem
93 public WeightedMeasurement(double weight, double measuredValue,
95 this.weight = weight;
101 * Get the weight of the measurement in the least squares problem
103 * @return weight
106 return weight;