How do you generate data at different sampling rates?
1 次查看(过去 30 天)
显示 更早的评论
Hello. I know how to generate data using the function Randi but I don't know how to run, lets say, three data sets all sampling at different times.
0 个评论
回答(1 个)
Azzi Abdelmalek
2013-6-11
Define your time vector
ts1=0.1;
ts2=0.01;
t1=0:ts1:10*ts1;
t2=max(t1)+ts2:ts2:max(t1)+10*ts2;
t=[t1 t2]
% Then generate your vector y
y=randi(numel(t),1,numel(t))
plot(t,y)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Structures 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!