Calculates the kurtosis of the given data, using the specified bias type
and excluding NaN values.
Namespace:
CenterSpace.NMath.StatsAssembly: NMathStats (in NMathStats.dll) Version: 3.4.0.0
Syntax
| C# |
|---|
public static double NaNKurtosis( double[] data, BiasType type ) |
| Visual Basic (Declaration) |
|---|
Public Shared Function NaNKurtosis ( _ data As Double(), _ type As BiasType _ ) As Double |
| Visual C++ |
|---|
public: static double NaNKurtosis( array<double>^ data, BiasType type ) |
Parameters
- data
- Type: array<
System..::.Double
>[]()[]
An array of doubles.
- type
- Type: CenterSpace.NMath.Stats..::.BiasType
Bias type.
Return Value
Kurtosis
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.InvalidArgumentException | Thrown if data has a length less than four. |