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.3179.0 (4.8.3179.0)
Syntax
C#
public static Complex Pow(
	Complex x,
	int n
)

Parameters

x  Complex

[Missing <param name="x"/> documentation for "M:Altaxo.Calc.ComplexMath.Pow(System.Numerics.Complex,System.Int32)"]

n  Int32

[Missing <param name="n"/> documentation for "M:Altaxo.Calc.ComplexMath.Pow(System.Numerics.Complex,System.Int32)"]

Return Value

Complex

[Missing <returns> documentation for "M:Altaxo.Calc.ComplexMath.Pow(System.Numerics.Complex,System.Int32)"]

See Also