FiniteDiscreteDistribution Constructor

Initializes a new instance of the FiniteDiscreteDistribution class having the specified values and masses.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public FiniteDiscreteDistribution(
	DoubleMatrix values,
	DoubleMatrix masses
)

Parameters

values  DoubleMatrix
The distinct values whose probabilities are explicitly assigned.
masses  DoubleMatrix
The probabilities assigned to the values.

Exceptions

ArgumentNullExceptionvalues is null.
-or-
masses is null.
ArgumentOutOfRangeExceptionvalues contains at least two identical entries.
-or-
masses contains at least an entry which does not belong to the interval [0, 1].
-or-
The sum of the entries in masses is not equal to 1.
ArgumentExceptionmasses has not the same dimensions of Values.

See Also