Click or drag to resize

ManagedLinearAlgebraProviderPointWisePowerArrays(Double, Double, Double) Method

Does a point wise power of two arrays z = x ^ y. This can be used to raise elements of vectors or matrices to the powers of another vector or matrix.

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

Parameters

x  Double
The array x.
y  Double
The array y.
result  Double
The result of the point wise power.

Implements

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