aboutsummaryrefslogtreecommitdiff
path: root/src/tab_carth2polar.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tab_carth2polar.c')
-rw-r--r--src/tab_carth2polar.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/tab_carth2polar.c b/src/tab_carth2polar.c
index e70d2b8..9dccd68 100644
--- a/src/tab_carth2polar.c
+++ b/src/tab_carth2polar.c
@@ -96,8 +96,6 @@ static void tab_carth2polar_bang(t_tab_carth2polar *x)
im = iemarray_getfloat(vec_src_im, i);
mag = sqrt(re*re + im*im);
arg = atan2(im, re) * rcp_two_pi;
- vec_dst_mag[i] = mag;
- vec_dst_arg[i] = arg;
iemarray_setfloat(vec_dst_mag, i, mag);
iemarray_setfloat(vec_dst_arg, i, arg);
}