Click or drag to resize

VectorTAddition(T, VectorT) Operator

Adds a scalar to each element of a vector.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static Vector<T> operator +(
	T leftSide,
	Vector<T> rightSide
)

Parameters

leftSide  T
The scalar value to add.
rightSide  VectorT
The vector to add to.

Return Value

VectorT
The result of the addition.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf rightSide is .
See Also