Click or drag to resize

ManagedLinearAlgebraProviderScaleArray(Complex, Complex, Complex) Method

Scales an array. Can be used to scale a vector and a matrix.

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

Parameters

alpha  Complex
The scalar.
x  Complex
The values to scale.
result  Complex
This result of the scaling.

Implements

ILinearAlgebraProviderTScaleArray(T, T, T)
Remarks
This is similar to the SCAL BLAS routine.
See Also