| DoubleComplexMatrixSlice Method |
Returns a vector that views a slice of this matrix. The slice begins at
element i,j and extends for n elements. The increment
between successive elements in the vector is rowStride rows and
colStride columns.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public DoubleComplexVector Slice(
int i,
int j,
int n,
int rowStride,
int colStride
)
Public Function Slice (
i As Integer,
j As Integer,
n As Integer,
rowStride As Integer,
colStride As Integer
) As DoubleComplexVector
public:
DoubleComplexVector^ Slice(
int i,
int j,
int n,
int rowStride,
int colStride
)
member Slice :
i : int *
j : int *
n : int *
rowStride : int *
colStride : int -> DoubleComplexVector
Parameters
- i Int32
- The starting row.
- j Int32
- The starting column.
- n Int32
- The number of elements.
- rowStride Int32
- The row increment.
- colStride Int32
- The column increment.
Return Value
DoubleComplexVectorA vector which views a slice of this matrix.
Exceptions Remarks The returned vector and the matrix share the same data.
See Also