Windows apps
Collapse the table of content
Expand the table of content

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

Multiplies a vector by the given scalar.

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

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

Parameters

factor
Type: T

The scalar value.

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

The source vector.

Return Value

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

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

Show:
© 2017 Microsoft