|
MultivariateEmpiricalDistribution Constructor (IDensityKernel, Double, Double)
|
Creates a new Empirical Distribution from the data samples.
Namespace:
Accord.Statistics.Distributions.Multivariate
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public MultivariateEmpiricalDistribution(
IDensityKernel kernel,
double[][] samples,
double[,] smoothing
)
Public Sub New (
kernel As IDensityKernel,
samples As Double()(),
smoothing As Double(,)
)
Request Example
View SourceParameters
- kernel
- Type: Accord.Statistics.Distributions.DensityKernelsIDensityKernel
The kernel density function to use.
Default is to use the GaussianKernel. - samples
- Type: SystemDouble
The data samples. - smoothing
- Type: SystemDouble
The kernel smoothing or bandwidth to be used in density estimation.
By default, the normal distribution approximation will be used.
See Also