RELATED to average of complex numbers
36 views (last 30 days)
Show older comments
how to find average of 3 arrays(complex value)?
0 Comments
Accepted Answer
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
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!