Click or drag to resize

DenseVectorMultiply(DenseVector, Single) Operator

Multiplies a vector with a scalar.

Namespace: Altaxo.Calc.LinearAlgebra.Single
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static DenseVector operator *(
	DenseVector leftSide,
	float rightSide
)

Parameters

leftSide  DenseVector
The vector to scale.
rightSide  Single
The scalar value.

Return Value

DenseVector
The result of the multiplication.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf leftSide is .
See Also