Click or drag to resize

MultivariateSample.Remove Method (IReadOnlyList<Double>)

Removes an entry from the sample.

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

Parameters

values
Type: System.Collections.Generic.IReadOnlyList<Double>
The values associated with the entry to remove.

Return Value

Type: Boolean
Whether the entry was found and removed.
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