RELATED to average of complex numbers

40 visualizaciones (últimos 30 días)
Amit
Amit el 20 de Nov. de 2014
Editada: Image Analyst el 20 de Nov. de 2014
how to find average of 3 arrays(complex value)?

Respuesta aceptada

William
William el 20 de Nov. de 2014
Editada: Image Analyst el 20 de Nov. de 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

Más respuestas (0)

Categorías

Más información sobre Solver Outputs and Iterative Display en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by