Effacer les filtres
Effacer les filtres

How to get the sum of the Mean absolute amplitudes of a signal ?

7 vues (au cours des 30 derniers jours)
Maria Amr
Maria Amr le 9 Déc 2020
I truly appreciate if someone answer me. I need to measure RMS of a seismic signal and I done it with the simple rms code, but my professor asked me to measure RMS of mean absolute amplitude sum(abs(a))/N). Thank you!
signal = ...;
y = rms(signal);

Réponse acceptée

Théophane Dimier
Théophane Dimier le 9 Déc 2020
Modifié(e) : Théophane Dimier le 9 Déc 2020
Try sqrt(mean(a.^2)), it should work in a simpler way.

Plus de réponses (1)

Théophane Dimier
Théophane Dimier le 9 Déc 2020
Hi!
Have you tried:
y=mean(abs(A));
?
  6 commentaires
Maria Amr
Maria Amr le 9 Déc 2020
Exactly. Thank you!
it seems, this code "sqrt(mean(a.^2))" gives a reasonable answer.
Théophane Dimier
Théophane Dimier le 9 Déc 2020
I have copied that solution to a formal answer so you can close the question

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by