Managed Array Functions<T>.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#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public virtual void Multiply(
int length,
ArraySlice<T> first,
ArraySlice<T> second,
ArraySlice<T> result
)
Parameters
- length Int32
- The number of elements in the array.
- first ArraySlice<T>
- The array that holds the first operands.
- second ArraySlice<T>
- The array that holds the second operands.
- result ArraySlice<T>
- The array that holds the results.