Sets the matrix element at the specified position to the specified value.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public abstract void SetValue(
T value,
int row,
int column
)
Public MustOverride Sub SetValue (
value As T,
row As Integer,
column As Integer
)
public:
virtual void SetValue(
T value,
int row,
int column
) abstract
abstract SetValue :
value : 'T *
row : int *
column : int -> unit
Parameters
- value
- Type: T
The new value of the element. - 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.
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.
Reference