RELATED to average of complex numbers

 Accepted Answer

William
William on 20 Nov 2014
Edited: Image Analyst on 20 Nov 2014
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

More Answers (0)

Categories

Tags

Asked:

on 20 Nov 2014

Edited:

on 20 Nov 2014

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!