System.Numerics.Tests.ComplexTests.Pow C# (CSharp) Method

Pow() private method

private Pow ( double real, double imaginary ) : void
real double
imaginary double
return void
        private static void Pow(double real, double imaginary)
        {
            Pow_Complex_Double(real, imaginary);
            Pow_Complex_Complex(real, imaginary);
        }
ComplexTests