public static double CentralMoment(
this IReadOnlyCollection<double> sample,
int r
)
<ExtensionAttribute>
Public Shared Function CentralMoment (
sample As IReadOnlyCollection(Of Double),
r As Integer
) As Double
public:
[ExtensionAttribute]
static double CentralMoment(
IReadOnlyCollection<double>^ sample,
int r
)
[<ExtensionAttribute>]
static member CentralMoment :
sample : IReadOnlyCollection<float> *
r : int -> float
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(IReadOnlyCollectionDouble, Int32).
ArgumentNullException | sample is . |