SampleCentralMoment Method |
Computes the given sample central moment.
Namespace:
Meta.Numerics.Statistics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public double CentralMoment(
int r
)
Public Function CentralMoment (
r As Integer
) As Double
public:
double CentralMoment(
int r
)
member CentralMoment :
r : int -> float
Parameters
- r
- Type: SystemInt32
The order of the moment to compute.
Return Value
Type:
DoubleThe
rth central moment.
Remarks This method computes the central moments of the sample data, not the estimated
central moments of the underlying population; to obtain the latter, use PopulationCentralMoment(Int32).
See Also