Click or drag to resize

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

Parameters

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

Implements

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