Info

This question is closed. Reopen it to edit or answer.

plotting array more than one time

1 view (last 30 days)
ahmed abdelmgeed
ahmed abdelmgeed on 17 Dec 2019
Closed: MATLAB Answer Bot on 20 Aug 2021
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"

Answers (1)

KSSV
KSSV on 17 Dec 2019
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) ;

Tags

Community Treasure Hunt

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

Start Hunting!