Removes the specified rows from the predictor matrix, and recalculates the model parameters.

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

Syntax

C#
public void RemoveObservations(
	int startRow,
	int numberToRemove
)
Visual Basic (Declaration)
Public Sub RemoveObservations ( _
	startRow As Integer, _
	numberToRemove As Integer _
)
Visual C++
public:
void RemoveObservations(
	int startRow, 
	int numberToRemove
)

Parameters

startRow
Type: System..::.Int32
The index of the first row to remove (zero-based).
numberToRemove
Type: System..::.Int32
The total number of rows to remove.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.IndexOutOfRangeExceptionThrown if the specified row index range is invalid.

See Also