Click or drag to resize

ManagedLinearAlgebraProviderScaleArray(Complex32, Complex32, Complex32) 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(
	Complex32 alpha,
	Complex32[] x,
	Complex32[] result
)

Parameters

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

Implements

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