Click or drag to resize

MultivariateSample.Add Method (IReadOnlyList<Double>)

Adds an entry to the sample.

Namespace:  Meta.Numerics.Statistics
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public void Add(
	IReadOnlyList<double> values
)

Parameters

values
Type: System.Collections.Generic.IReadOnlyList<Double>
The values associated with the entry.
Exceptions
ExceptionCondition
ArgumentNullExceptionvalues is null.
DimensionMismatchExceptionThe dimension of values does not match the dimension of the multivariate sample.
InvalidOperationExceptionThe multivariate sample is read-only.
See Also