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

Multiplies a vector by a specified scalar value.

Namespace:  System.Numerics
Assembly:  System.Numerics.Vectors (in System.Numerics.Vectors.dll)

public:
static Vector<T> operator *(
	Vector<T> value, 
	T factor
)

Parameters

value
Type: System.Numerics::Vector<T>

The source vector.

factor
Type: T

A scalar value.

Return Value

Type: System.Numerics::Vector<T>
The scaled vector.

The Multiply method defines the multiplication operation for Vector<T> objects.

Show: