Distributed Vector<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 the elements of the vector to the specified value. |
Set | Sets the vector element at the specified position to the specified value. |
Set |
Sets the value at the specified key value.
Preliminary |
SetValue(T)
Sets all the elements of the vector to
the specified value.
public override Vector<T> SetValue(
T value
)
Parameters
Return Value
Vector<T>A reference to this Vector<T>.
SetValue(T, Int32)
Sets the vector element at the specified position to the specified value.
public override void SetValue(
T value,
int index
)
Parameters
Return Value
The element of the Vector<T> in the indexth position.Remarks
The data is only updated locally.