Moves the given column to an initial position in the decomposition.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

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

Parameters

j
Type: System..::.Int32
Initial column index (zero based).

Remarks

The jth column of A is moved to the beginning of AP before the computation, and fixed in place during the computation.

See Also