Home | History | Annotate | Download | only in interpolation

Lines Matching defs:bandwidth

47     /** Default value of the bandwidth parameter. */
63 * The bandwidth parameter: when computing the loess fit at
70 private final double bandwidth;
89 * with a bandwidth of {@link #DEFAULT_BANDWIDTH},
96 this.bandwidth = DEFAULT_BANDWIDTH;
103 * with given bandwidth and number of robustness iterations.
106 * #LoessInterpolator(double, int, double) LoessInterpolator(bandwidth,
110 * @param bandwidth when computing the loess fit at
120 * @throws MathException if bandwidth does not lie in the interval [0,1]
124 public LoessInterpolator(double bandwidth, int robustnessIters) throws MathException {
125 this(bandwidth, robustnessIters, DEFAULT_ACCURACY);
130 * with given bandwidth, number of robustness iterations and accuracy.
132 * @param bandwidth when computing the loess fit at
144 * @throws MathException if bandwidth does not lie in the interval [0,1]
149 public LoessInterpolator(double bandwidth, int robustnessIters, double accuracy) throws MathException {
150 if (bandwidth < 0 || bandwidth > 1) {
152 bandwidth);
154 this.bandwidth = bandwidth;
226 int bandwidthInPoints = (int) (bandwidth * n);
230 n, 2.0 / n, bandwidth);
260 // Compute the point of the bandwidth interval that is