Click or drag to resize

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

Parameters

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