ComplexConjugateSignalMatrix<T>.GetValue Method

Definition

Namespace: Numerics.NET.SignalProcessing
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

GetValue(Int32, Int32) Gets the matrix component at the specified position.
GetValue<R, C>(R, C) Gets the value at the specified row and column keys.
Preliminary

GetValue(Int32, Int32)

Gets the matrix component at the specified position.
C#
public override Complex<T> GetValue(
	int row,
	int column
)

Parameters

row  Int32
The zero-based index of the row.
column  Int32
The zero-based index of the column.

Return Value

Complex<T>
The component of the complex matrix in the columnth column of the rowth row.

Remarks

This method does not perform bounds checking. It is provided for optimized access in situations where the argument is known to be within bounds. If the argument is outside its valid range, the result is unspecified.

See Also