|
CircularDescriptiveAnalysis Constructor (Double, Double, Boolean)
|
Note: This API is now obsolete.
Constructs the Circular Descriptive Analysis.
Namespace:
Accord.Statistics.Analysis
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax [ObsoleteAttribute("Please pass only the lengths and columnNames parameters and call the Learn() method passing the data to be analyzed.")]
public CircularDescriptiveAnalysis(
double[] data,
double length,
bool inPlace = false
)
<ObsoleteAttribute("Please pass only the lengths and columnNames parameters and call the Learn() method passing the data to be analyzed.")>
Public Sub New (
data As Double(),
length As Double,
Optional inPlace As Boolean = false
)
Request Example
View SourceParameters
- data
- Type: SystemDouble
The source data to perform analysis. - length
- Type: SystemDouble
The length of each circular variable (i.e. 24 for hours). - inPlace (Optional)
- Type: SystemBoolean
Whether the analysis should conserve memory by doing
operations over the original data array.
See Also