Click or drag to resize

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

Parameters

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

Implements

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