Stats.BlomScores Method

Definition

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

BlomScores(IList<Double>) Returns the Blom scores corresponding to the specified ranks.
BlomScores(IList<Int32>) Returns the Blom scores corresponding to the specified ranks.

Stats.BlomScores(IList<Double>)

Returns the Blom scores corresponding to the specified ranks.
C#
public static Vector<double> BlomScores(
	IList<double> ranks
)

Parameters

ranks  IList<Double>
A Vector<T> that contains the ranks of the observations, as produced by Ranks(Vector<Double>).

Return Value

Vector<Double>
A Vector<T> containing the Blom scores corresponding to ranks.

Exceptions

ArgumentNullExceptionranks is null.

Stats.BlomScores(IList<Int32>)

Returns the Blom scores corresponding to the specified ranks.
C#
public static Vector<double> BlomScores(
	IList<int> ranks
)

Parameters

ranks  IList<Int32>
A Vector<T> that contains the ranks of the observations, as produced by Ranks(Vector<Double>).

Return Value

Vector<Double>
A Vector<T> containing the Blom scores corresponding to ranks.

Exceptions

ArgumentNullExceptionranks is null.

See Also