Click or drag to resize

DoubleVectorMultiply(DoubleVector, DoubleVector, DoubleVector) Method

Multiplies two vectors and puts the result into a third vector.

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

Parameters

u  DoubleVector
A vector.
v  DoubleVector
A vector.
w  DoubleVector
A vector to hold the result.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the three vectors are not all of the same length.
Remarks
w[i] = u[i] * v[i]
See Also