RELATED to average of complex numbers

조회 수: 39 (최근 30일)
Amit
Amit 2014년 11월 20일
편집: Image Analyst 2014년 11월 20일
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