Click or drag to resize

KernelDensityEstimateTriangular Method

Estimate the probability density function of a random variable at point x using a triangular kernel.

Namespace: Altaxo.Calc.Statistics
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public 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

Double
The estimated density value at x using a triangular kernel.
See Also