MomentMathRawToCumulant Method |
Converts raw moments to cumulants.
Namespace:
Meta.Numerics.Statistics.Distributions
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static double[] RawToCumulant(
double[] M
)
Public Shared Function RawToCumulant (
M As Double()
) As Double()
public:
static array<double>^ RawToCumulant(
array<double>^ M
)
static member RawToCumulant :
M : float[] -> float[]
Parameters
- M
- Type: SystemDouble
A set of raw moments.
Return Value
Type:
DoubleThe corresponding set of cumulants.
Exceptions Remarks The computation of cumulants from raw moments is often subject
to significant cancellation errors, so you should be wary of the higher
digits of cumulants returned by this method.
See Also