Method: Complex#polar

Defined in:
complex.c

#polarArray

Returns an array; [cmp.abs, cmp.arg].

Complex(1, 2).polar  #=> [2.23606797749979, 1.1071487177940904]

Returns:

[View source]

1247
1248
1249
1250
1251
# File 'complex.c', line 1247

static VALUE
nucomp_polar(VALUE self)
{
    return rb_assoc_new(f_abs(self), f_arg(self));
}