magnitude property
double
get
magnitude
Magnitude (absolute value) of the complex number
Implementation
double get magnitude => math.sqrt(real * real + imaginary * imaginary);
Magnitude (absolute value) of the complex number
double get magnitude => math.sqrt(real * real + imaginary * imaginary);