Click or drag to resize

NMathFunctionsOuterProduct(FloatVector, FloatVector, FloatMatrix) Method

Performs an outer product of the two vectors and puts the answer in the given matrix.

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

Parameters

v  FloatVector
A vector.
w  FloatVector
A vector.
M  FloatMatrix
A matrix.
Exceptions
ExceptionCondition
MismatchedSizeException Thrown if M isn't a matrix with v.Length rows and w.Length columns.
See Also