|  | DoubleComplexMatrixSet(Slice, Slice, DoubleComplex) Method | 
            Sets the values of the submatrix determined by the specified slices to
            a given value.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic DoubleComplexMatrix Set(
	Slice rowSlice,
	Slice colSlice,
	DoubleComplex d
)
Public Function Set ( 
	rowSlice As Slice,
	colSlice As Slice,
	d As DoubleComplex
) As DoubleComplexMatrix
public:
DoubleComplexMatrix^ Set(
	Slice^ rowSlice, 
	Slice^ colSlice, 
	DoubleComplex d
)
member Set : 
        rowSlice : Slice * 
        colSlice : Slice * 
        d : DoubleComplex -> DoubleComplexMatrix Parameters
- rowSlice  Slice
- The rows of the submatrix.
- colSlice  Slice
- The columns of the submatrix.
- d  DoubleComplex
- The value to set.
Return Value
DoubleComplexMatrixA reference to self.
 See Also
See Also