Average of Matrix [AxB] of Complex value

8 visualizaciones (últimos 30 días)
Touhidul Anwar
Touhidul Anwar el 31 de Mzo. de 2022
Editada: Pratik el 4 de En. de 2024
I have Some IQ data which is a 1000x1 array.
Now I want to apply this equation Σ((I² + Q²)/N/100),
Is there any MATLAB function to prcess this operation ?
  7 comentarios
Touhidul Anwar
Touhidul Anwar el 31 de Mzo. de 2022
Forget about IQ. I have a matrix of complex value.
Santosh Fatale
Santosh Fatale el 6 de Abr. de 2022
I need some clarification on matrix I and Q. Are you refering In-phase and Qudrature-phase compenent of complex signal which are respectively Real and Imaginary part of the signal under consideration?

Iniciar sesión para comentar.

Respuestas (1)

Pratik
Pratik el 4 de En. de 2024
Editada: Pratik el 4 de En. de 2024
Hi Touhidul,
As per my understanding, you want to apply the formula Σ((I² + Q²)/N/100 over an array of complex numbers.
Assuming that “I” and “Q” in the formula represent the real and imaginary part of the numbers in the array, please refer to the following MATLAB code to calculate the result:
% Total number of samples
N = length(iqData); % here “iqData” represents the array of complex numbers
result = sum(abs(iqData).^2) /N/100;
“abs(iqData).^2” computes the square of the magnitude of each complex sample, which is equivalent to I^2 + Q^2 for each sample. “sum” adds up all the values of the samples.
Hope this helps.

Categorías

Más información sobre Logical en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by