Click or drag to resize

ManagedLinearAlgebraProviderSubtractArrays(Complex32, Complex32, Complex32) Method

Does a point wise subtraction of two arrays z = x - y. This can be used to subtract 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 SubtractArrays(
	Complex32[] x,
	Complex32[] y,
	Complex32[] result
)

Parameters

x  Complex32
The array x.
y  Complex32
The array y.
result  Complex32
The result of the subtraction.

Implements

ILinearAlgebraProviderTSubtractArrays(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