 | DoubleSymmetric2DSignalReaderItem Property |
Gets the value at [row, column] of the packed complex-conjugate symmetric signal.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic virtual DoubleComplex this[
int row,
int col
] { get; }
Public Overridable ReadOnly Default Property Item (
row As Integer,
col As Integer
) As DoubleComplex
Get
public:
virtual property DoubleComplex default[int row, int col] {
DoubleComplex get (int row, int col);
}
abstract Item : DoubleComplex with get
override Item : DoubleComplex with get
Parameters
- row Int32
- row in the signal array.
- col Int32
- column in the signal array.
Return Value
DoubleComplexSignal value at
[row, col].
ExceptionsException | Condition |
---|
IndexOutOfRangeException |
Thrown if row or col is less than zero or greater than the dimensions of the 2D signal data.
|
See Also