Click or drag to resize

VectorTMultiply(VectorT, VectorT) Operator

Computes the dot product between two Vectors.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static T operator *(
	Vector<T> leftSide,
	Vector<T> rightSide
)

Parameters

leftSide  VectorT
The left row vector.
rightSide  VectorT
The right column vector.

Return Value

T
The dot product between the two vectors.
Exceptions
ExceptionCondition
ArgumentExceptionIf leftSide and rightSide are not the same size.
ArgumentNullExceptionIf leftSide or rightSide is .
See Also