klyn.math.Math.abs
method
public static abs(value as Complex<Double>) as Double:
Description

Returns the magnitude of a complex number.

import klyn.math

z = Complex(3.0, 4.0)
print(Math.abs(z))   # 5.0