How to plot signal continuously?

1 次查看(过去 30 天)
VK.
VK. 2018-6-5
编辑: Birdman 2018-6-5
Hi, I have vector which length is 120798 and I want to plot it on graph continuously in time. For example, I want to have 15 seconds of signal on the plot all the time. Is there any way to do this?

回答(1 个)

Birdman
Birdman 2018-6-5
编辑:Birdman 2018-6-5
Consider the following approach:
A=randi([1 5],1,120798); %this is demo data, you will use your own data instead of this
Tend=15; %you want to plot for 15 seconds
t=0:Tend/numel(A):Tend-(Tend/numel(A));
plot(t,A)
Hope this helps.
  2 个评论
VK.
VK. 2018-6-5
Thanks for your answer. Can you tell me please what is 'val' in your code?
Birdman
Birdman 2018-6-5
Ups sorry, that should be Tend as well. My mistake. I edited it.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by