Click or drag to resize

ComplexMathPow(Complex, Int32) Method

Calculates x^n by repeated multiplications. The algorithm takes ld(n) multiplications. This algorithm can also be used with negative n.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static Complex Pow(
	Complex x,
	int n
)

Parameters

x  Complex
The complex base value.
n  Int32
The integral exponent.

Return Value

Complex
The value of x raised to the power n.
See Also