Distributed Matrix<T>.Set Value Method
Definition
Namespace: Extreme.Mathematics.Distributed
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Set | Sets all elements of the matrix to the specified value. |
Set | Sets the matrix element at the specified position to the specified value. |
Set |
Sets the value at the specified row and column key value.
Preliminary |
SetValue(T)
Sets all elements of the matrix to the specified value.
public override Matrix<T> SetValue(
T value
)
Parameters
- value T
- The new value.
Return Value
Matrix<T>SetValue(T, Int32, Int32)
Sets the matrix element at the specified position to the specified value.
public override void SetValue(
T value,
int row,
int column
)
Parameters
Remarks
The data is only updated locally.