Click or drag to resize

VectorMathMultiply(Double, Double, Double) 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(
	double[] a,
	double[] b,
	double[] c
)

Parameters

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