KernelDensityEstimateTriangular Method |
Estimate the probability density function of a random variable at point x using a triangular kernel.
Namespace: Altaxo.Calc.StatisticsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static double EstimateTriangular(
double x,
double bandwidth,
IList<double> samples
)
Parameters
- x Double
- Point at which to estimate the density.
- bandwidth Double
- Kernel bandwidth (scale).
- samples IListDouble
- Sample values used for estimation.
Return Value
DoubleThe estimated density value at
x using a triangular kernel.
See Also