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

조회 수: 2 (최근 30일)
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

채택된 답변

Star Strider
Star Strider 2019년 7월 19일
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
Simon Kalita-de Croft
Simon Kalita-de Croft 2019년 7월 19일
Actually I got it.
Thank you very much Star!
S

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Waveform Generation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by