Kernel Density.Estimate Bandwidth Method
Estimates the bandwidth for kernel density estimation
using the specified data and method.
Definition
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
The estimated bandwidth.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public static double EstimateBandwidth(
Vector<double> input,
Kernel kernel,
KernelDensityBandwidthEstimator bandwidthEstimator
)
Parameters
- input Vector<Double>
- kernel Kernel
- bandwidthEstimator KernelDensityBandwidthEstimator
- Specifies the method to use to estimate the bandwidth.
Return Value
DoubleThe estimated bandwidth.
Exceptions
ArgumentNullException | input is null. -or- kernel is null. |