  | NMathFunctionsCounts(Double) Method | 
            Returns a dictionary in which the keys are the unique elements in a given data
            set and the values are how many times they occur.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static IDictionary Counts(
	double[] data
)
Public Shared Function Counts ( 
	data As Double()
) As IDictionary
public:
static IDictionary^ Counts(
	array<double>^ data
)
static member Counts : 
        data : float[] -> IDictionary Parameters
- data  Double
 - An array.
 
Return Value
IDictionaryA dictionary of unique elements and their counts.
See Also