Click or drag to resize
ComplexScale Method
Returns the product of this complex number and the specified scalar.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public Complex Scale(
	double alpha
)

Parameters

alpha
Type: SystemDouble
the scalar

Return Value

Type: Complex
the complex number whose value is (alpha*this)
See Also