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 FloatMatrix Set(
	int row,
	Slice colSlice,
	float x
)
Visual Basic (Declaration)
Public Function Set ( _
	row As Integer, _
	colSlice As Slice, _
	x As Single _
) As FloatMatrix
Visual C++
public:
FloatMatrix^ Set(
	int row, 
	Slice^ colSlice, 
	float x
)

Parameters

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

Return Value

A reference to self.

See Also