Click or drag to resize

DenseVectorMultiply(DenseVector, DenseVector) Operator

Computes the dot product between two Vectors.

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

Parameters

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

Return Value

Complex32
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