Vector<T>.Multiply(Vector<T>, 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 *(
	Vector<T> vector,
	T factor
)

Parameters

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

Return Value

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

Exceptions

ArgumentNullExceptionvector is null

See Also