IArrayFunctions<T, TShape, TArray>.Multiply Method

Multiplies each element of an array by the corresponding element in another array.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
void Multiply(
	TShape shape,
	TArray first,
	TArray second,
	TArray result
)

Parameters

shape  TShape
The number of elements in the array.
first  TArray
The array that holds the first operands.
second  TArray
The array that holds the second operands.
result  TArray
The array that holds the results.

See Also