How to integrate the discrete data?

9 visualizaciones (últimos 30 días)
Vinay Killamsetty
Vinay Killamsetty el 17 de Oct. de 2021
Comentada: Vinay Killamsetty el 24 de Oct. de 2021
Hi,
I am having a 3 2d matrices
1st matrix is of size NxM corresponds to the X-cordinates
2nd matrix is of size NxM corresponds to the Y-cordinates
3rd matrix is of size NxM corresponds to the Power at the above designated cordinates
How to find the Total power and total power above half maximum?
  2 comentarios
Jan
Jan el 17 de Oct. de 2021
Isn't the total power simply the sum of the powers? The half maximum of what?
Vinay Killamsetty
Vinay Killamsetty el 24 de Oct. de 2021
Yeah, thats true.
Thank you for your advice.

Iniciar sesión para comentar.

Respuesta aceptada

Prachi Kulkarni
Prachi Kulkarni el 21 de Oct. de 2021
Hi,
Integration is equivalent to summation in the discrete domain. So, if P is your NxM power matrix, you can compute the total power and total power above half maximum as follows, assuming the power is in watts.
totalPower = sum(P,'all');
maxPower = max(P(:));
totalPowerHalfMaximum = sum(P(P>0.5*maxPower));

Más respuestas (0)

Categorías

Más información sobre Power and Energy Systems en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by