Collective2 Explorer
Collective2 Explorer
MathNet.Numerics Namespaces
MathNet.Numerics.Statistics
Statistics Class
Statistics Methods
Covariance Method
Covariance Method (IEnumerable(Double), IEnumerable(Double))
Covariance Method (IEnumerable(Nullable(Double)), IEnumerable(Nullable(Double)))
Statistics
Covariance Method (IEnumerable
Double
, IEnumerable
Double
)
Estimates the unbiased population covariance from the provided samples. On a dataset of size N will use an N-1 normalizer (Bessel's correction). Returns NaN if data has less than two entries or if any entry is NaN.
Namespace:
MathNet.Numerics.Statistics
Assembly:
MathNet.Numerics (in MathNet.Numerics.dll) Version: 3.7
Syntax
C#
Copy
public
static
double
Covariance
(
this
IEnumerable
<
double
>
samples1
,
IEnumerable
<
double
>
samples2
)
Parameters
samples1
Type:
System.Collections.Generic
IEnumerable
Double
A subset of samples, sampled from the full population.
samples2
Type:
System.Collections.Generic
IEnumerable
Double
A subset of samples, sampled from the full population.
Return Value
Type:
Double
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerable
Double
. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic)
or
Extension Methods (C# Programming Guide)
.
See Also
Reference
Statistics Class
Covariance Overload
MathNet.Numerics.Statistics Namespace