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 个评论

请先登录,再进行评论。

更多回答(0 个)

标签

Community Treasure Hunt

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

Start Hunting!

Translated by