Sets the matrix component at the specified position to the specified value.
Namespace: Extreme.Mathematics.LinearAlgebraAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public override void SetValue(
T value,
int row,
int column
)
Public Overrides Sub SetValue (
value As T,
row As Integer,
column As Integer
)
public:
virtual void SetValue(
T value,
int row,
int column
) override
abstract SetValue :
value : 'T *
row : int *
column : int -> unit
override SetValue :
value : 'T *
row : int *
column : int -> unit
Parameters
- value
- Type: T
The new value of the component. - row
- Type: SystemInt32
The zero-based row index of
the element to get or set. - column
- Type: SystemInt32
The zero-based column index of
the element to get or set.
Return Value
Type:
The component of the
MatrixT in the
columnth column of the
rowth row.
This method does not perform bounds checking. It is provided
for optimized access in situations where the arguments are known to be
within bounds. If either argument is outside its valid range, the effect
may be unpredictable.
Numerical Libraries
Supported in: 6.0
Reference