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

Abs() private method

private Abs ( double real, double imaginary ) : void
real double
imaginary double
return void
        public static void Abs(double real, double imaginary)
        {
            double expected = Math.Sqrt(real * real + imaginary * imaginary);
            Abs_Advanced(real, imaginary, expected);
        }
ComplexTests