Method: Complex#angle
- Defined in:
- complex.c
permalink #arg ⇒ Float #angle ⇒ Float #phase ⇒ Float
[View source]
1216 1217 1218 1219 1220 1221 |
# File 'complex.c', line 1216
VALUE
rb_complex_arg(VALUE self)
{
get_dat1(self);
return rb_math_atan2(dat->imag, dat->real);
}
|