Sets the values in the specified row and columns to the given value.

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

Syntax

C#
public FloatComplexMatrix Set(
	int row,
	Slice colSlice,
	FloatComplex x
)
Visual Basic (Declaration)
Public Function Set ( _
	row As Integer, _
	colSlice As Slice, _
	x As FloatComplex _
) As FloatComplexMatrix
Visual C++
public:
FloatComplexMatrix^ Set(
	int row, 
	Slice^ colSlice, 
	FloatComplex x
)

Parameters

row
Type: System..::.Int32
The row.
colSlice
Type: CenterSpace.NMath.Core..::.Slice
The columns.
x
Type: CenterSpace.NMath.Core..::.FloatComplex
The value to set.

Return Value

A reference to self.

See Also