Returns the submatrix determined by the specified slices.

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

Syntax

C#
public DoubleComplexMatrix this[
	Slice rowSlice,
	Slice colSlice
] { get; set; }
Visual Basic (Declaration)
Public Default Property Item ( _
	rowSlice As Slice, _
	colSlice As Slice _
) As DoubleComplexMatrix
Visual C++
public:
property DoubleComplexMatrix^ default[Slice^ rowSlice, Slice^ colSlice] {
	DoubleComplexMatrix^ get (Slice^ rowSlice, Slice^ colSlice);
	void set (Slice^ rowSlice, Slice^ colSlice, DoubleComplexMatrix^ value);
}

Parameters

rowSlice
Type: CenterSpace.NMath.Core..::.Slice
The rows of the submatrix.
colSlice
Type: CenterSpace.NMath.Core..::.Slice
The columns of the submatrix.

See Also