Click or drag to resize

ManagedLinearAlgebraProviderPointWiseDivideArrays(Single, Single, Single) Method

Does a point wise division of two arrays z = x / y. This can be used to divide elements of vectors or matrices.

Namespace: Altaxo.Calc.Providers.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void PointWiseDivideArrays(
	float[] x,
	float[] y,
	float[] result
)

Parameters

x  Single
The array x.
y  Single
The array y.
result  Single
The result of the point wise division.

Implements

ILinearAlgebraProviderTPointWiseDivideArrays(T, T, T)
Remarks
There is no equivalent BLAS routine, but many libraries provide optimized (parallel and/or vectorized) versions of this routine.
See Also