Composed Complex Vector<T>.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 the components of the ComposedComplexVector<T> 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(Complex<T>)
Sets all the components of the ComposedComplexVector<T> to
the specified value.
public override Vector<Complex<T>> SetValue(
Complex<T> value
)
Parameters
- value Complex<T>
- The value to be assigned to each component of this ComposedComplexVector<T>.
Return Value
Vector<Complex<T>>A reference to this instance.
SetValue(Complex<T>, Int32)
Sets the vector element at the specified position to the specified value.
public override void SetValue(
Complex<T> value,
int index
)
Parameters
- value Complex<T>
- A Complex<T> specifying the new value of the component.
- index Int32
- The zero-based index of the component.
Return Value
The component of the Vector<T> in the indexth position.Remarks
This method does not perform bounds checking. It is provided for optimized access in situations where the argument is known to be within bounds. If the argument is outside its valid range, the result may be unpredictable.