Click or drag to resize

FloatVectorMultiply(FloatVector, FloatVector) Method

Multiplies two vectors.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatVector Multiply(
	FloatVector v,
	FloatVector w
)

Parameters

v  FloatVector
A vector.
w  FloatVector
A vector.

Return Value

FloatVector
A vector containing the product.
Remarks
This method performs elementwise multiplication (u[i] = v[i] * w[i]). See NMathFunctions.Dot() to calculate the dot (inner) product of two vectors, and NMathFunctions.OuterProduct() for the outer product.
See Also