Vector<T>.Multiply(T, Vector<T>) Operator

Multiplies a vector by a constant.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Vector<T> operator *(
	T factor,
	Vector<T> vector
)

Parameters

factor  T
A number.
vector  Vector<T>
A vector.

Return Value

Vector<T>
A vector whose elements are the corresponding elements of vector multiplied by factor.

Exceptions

ArgumentNullExceptionvector is null

See Also