Click or drag to resize

VectorMultiply Operator (Vector, Vector)

Computes the dot product of two given vectors.

Namespace:  FinMath.LinearAlgebra
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public static double operator *(
	Vector left,
	Vector right
)

Parameters

left
Type: FinMath.LinearAlgebraVector
The left vector.
right
Type: FinMath.LinearAlgebraVector
The right vector.

Return Value

Type: Double
The value of dot product.
See Also