ILinearAlgebraProviderTPointWiseMultiplyArrays Method |
Does a point wise multiplication of two arrays z = x * y. This can be used
to multiply elements of vectors or matrices.
Namespace: Altaxo.Calc.Providers.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax void PointWiseMultiplyArrays(
T[] x,
T[] y,
T[] result
)
Parameters
- x T
- The array x.
- y T
- The array y.
- result T
- The result of the point wise multiplication.
Remarks There is no equivalent BLAS routine, but many libraries
provide optimized (parallel and/or vectorized) versions of this
routine.
See Also