Method: Complex#polar
- Defined in:
- complex.c
permalink #polar ⇒ Array
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));
}
|
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));
}
|