MATLAB: RELATED to average of complex numbers

average

how to find average of 3 arrays(complex value)?

Best Answer

Separate into real and imaginary component arrays, divide, then recombine:
av_real = (real_a + real_b + real_c) / 3;
av_img = (img_a + img_b + img_b) / 3
Related Question