Sets a column of the matrix.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public void SetColumn(
	int column,
	double a1,
	double a2,
	double a3,
	double a4
)
Visual Basic (Declaration)
Public Sub SetColumn ( _
	column As Integer, _
	a1 As Double, _
	a2 As Double, _
	a3 As Double, _
	a4 As Double _
)
Visual C++
public:
void SetColumn(
	int column, 
	double a1, 
	double a2, 
	double a3, 
	double a4
)

Parameters

column
Type: System..::.Int32
The zero-based column index.
a1
Type: System..::.Double
Element [0, column].
a2
Type: System..::.Double
Element [1, column].
a3
Type: System..::.Double
Element [2, column].
a4
Type: System..::.Double
Element [3, column].

Exceptions

ExceptionCondition
System..::.IndexOutOfRangeExceptionThe column index is not equal to 0, 1, 2 or 3.

See Also