Gets the matrix component at the specified position.
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics.SinglePrecision.Net40 (in Extreme.Numerics.SinglePrecision.Net40.dll) Version: 4.0.10170.0 (4.0.11003.0)
Syntax
| C# |
public override sealed float GetValue(
int row,
int column
)
|
| Visual Basic (Declaration) |
Public Overrides NotOverridable Function GetValue ( _
row As Integer, _
column As Integer _
) As Single
|
| Visual C++ |
public:
virtual float GetValue(
int row,
int column
) override sealed
|
Parameters
-
row
- Type: System..::..Int32
The zero-based row index of
the element to get or set.
-
column
- Type: System..::..Int32
The zero-based column index of
the element to get or set.
Return Value
The component of the matrix in the
columnth column of the
rowth row.
Remarks
See Also