Removes the row at the indicated index from the predictor matrix and the corresponding element from the observation vector, and recalculates the model parameters.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public void RemoveObservation(
	int row
)
Visual Basic (Declaration)
Public Sub RemoveObservation ( _
	row As Integer _
)
Visual C++
public:
void RemoveObservation(
	int row
)

Parameters

row
Type: System..::.Int32
The index of the row to remove (zero-based).

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.IndexOutOfRangeExceptionThrown if the specifed row is out of range.

See Also