RELATED to average of complex numbers

19 ビュー (過去 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 Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by