How can I measure the average of a signal at specified time points?

2 Ansichten (letzte 30 Tage)
Hello
I'm sure this is a simple fix, but how can I measure the average of a signal at specified x points?
E.g. I want to measure the mean at 0 - 0.2 in the below exampe, and then again at 0.5-0.7
What code should I use please?
Thanks
Screen Shot 2019-07-19 at 10.02.50 pm.png

Akzeptierte Antwort

Star Strider
Star Strider am 19 Jul. 2019
Try this:
t = ...; % Time Vector
s = ...; % Signal Vector
t1 = t <= 0.2;
t2 = (t >= 0.5) & (t <= 0.7);
s1 = mean(s(t1));
s2 = mean(s(t2));
  3 Kommentare
Simon Kalita-de Croft
Simon Kalita-de Croft am 19 Jul. 2019
Actually I got it.
Thank you very much Star!
S

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by