Click or drag to resize

VectorMathMultiply(IReadOnlyListDouble, IReadOnlyListDouble, IVectorDouble) Method

Multiplies (elementwise) two vectors a and b and stores the result in c. All vectors must have the same length.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void Multiply(
	IReadOnlyList<double> a,
	IReadOnlyList<double> b,
	IVector<double> c
)

Parameters

a  IReadOnlyListDouble
First summand.
b  IReadOnlyListDouble
Second summand.
c  IVectorDouble
The resulting vector.
See Also