RELATED to average of complex numbers

40 次查看(过去 30 天)
how to find average of 3 arrays(complex value)?

采纳的回答

William
William 2014-11-20
编辑:Image Analyst 2014-11-20
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 个)

类别

Help CenterFile Exchange 中查找有关 Solver Outputs and Iterative Display 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by