Sets the values of the submatrix determined by the specified slices to a given value.

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

Syntax

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

Parameters

rowSlice
Type: CenterSpace.NMath.Core..::.Slice
The rows of the submatrix.
colSlice
Type: CenterSpace.NMath.Core..::.Slice
The columns of the submatrix.
x
Type: CenterSpace.NMath.Core..::.FloatComplex
The value to set.

Return Value

A reference to self.

See Also