public enum BandwidthSelectionMethod extends Enum<BandwidthSelectionMethod>
| Enum Constant and Description |
|---|
FixedBandwidth
Perform GWR using a specified bandwidth given in the same
units as the horizontal coordinate system.
|
FixedProportionalBandwidth
Perform GWR using a bandwidth that is a fixed proportion of the
average distance from the query point for the set of local sample
vertices used in the interpolation.
|
OptimalAICc
Attempt to automatically select the bandwidth selection
using the Akaike Information Criteria (corrected for sample size).
|
OrdinaryLeastSquares
Perform the regression using a uniform weighting for all
samples.
|
| Modifier and Type | Method and Description |
|---|---|
static BandwidthSelectionMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BandwidthSelectionMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BandwidthSelectionMethod FixedBandwidth
public static final BandwidthSelectionMethod FixedProportionalBandwidth
public static final BandwidthSelectionMethod OptimalAICc
public static final BandwidthSelectionMethod OrdinaryLeastSquares
public static BandwidthSelectionMethod[] values()
for (BandwidthSelectionMethod c : BandwidthSelectionMethod.values()) System.out.println(c);
public static BandwidthSelectionMethod valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.