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