Symmetric Matrix<T, TSlice, TStorage2D>.Set Value Method
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Set | Sets all elements of the matrix to the specified value. |
Set | Sets the matrix component at the specified position to the specified value. |
Set |
Sets the value at the specified row and column key value.
Preliminary |
SetValue(T, Int32, Int32)
Sets the matrix component at the specified position to the specified value.
public override void SetValue(
T value,
int row,
int column
)
Parameters
- value T
- The new value of the component.
- row Int32
- The zero-based row index of the element to get or set.
- column Int32
- The zero-based column index of the element to get or set.
Return Value
The component of the Matrix<T> 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 arguments are known to be within bounds. If either argument is outside its valid range, the effect may be unpredictable.