Info
此问题已关闭。 请重新打开它进行编辑或回答。
plotting array more than one time
5 次查看(过去 30 天)
显示 更早的评论
I need a help in plotting this array [0 1 0 0 1 1 1 0 1 0] 50 times in the same figure so that the starting point of a time is the end point of the previous one (plus one), so if the previous one ends at 9 the new one starts at 10. but without using (repmat) I need that each time is a separate array.
1st time of the array [0 1 0 0 1 1 1 0 1 0] is from (0-9)
2nd time of the array is from (10-19)
3rd time of the array is from (20-29), and so on
but each time is a separate array dont want to combine them all on one array like function "repmat"
0 个评论
回答(1 个)
KSSV
2019-12-17
a = [0 1 0 0 1 1 1 0 1 0] ;
t = 0:1:59 ;
t = reshape(t,10,[])' ;
a = repmat(a,size(t,1),1) ;
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!