KernelDensityEpanechnikovKernel Method |
Epanechnikov Kernel:
x => Math.Abs(x) <= 1.0 ? 3.0/4.0(1.0-x^2) : 0.0
Namespace: Altaxo.Calc.StatisticsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static double EpanechnikovKernel(
double x
)
Parameters
- x Double
- The standardized input value.
Return Value
DoubleThe Epanechnikov kernel value at
x.
See Also