|
MeanShift Constructor (Int32, IRadiallySymmetricKernel, Double)
|
Note: This API is now obsolete.
Namespace:
Accord.MachineLearning
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax [ObsoleteAttribute("It is not necessary to specify a value for the dimension parameter anymore.")]
public MeanShift(
int dimension,
IRadiallySymmetricKernel kernel,
double bandwidth
)
<ObsoleteAttribute("It is not necessary to specify a value for the dimension parameter anymore.")>
Public Sub New (
dimension As Integer,
kernel As IRadiallySymmetricKernel,
bandwidth As Double
)
Request Example
View SourceParameters
- dimension
- Type: SystemInt32
The dimension of the samples to be clustered. - kernel
- Type: Accord.Statistics.Distributions.DensityKernelsIRadiallySymmetricKernel
The density kernel function to use. - bandwidth
- Type: SystemDouble
The bandwidth (also known as radius) to consider around samples.
See Also