I need to repeat a sequence 33 times
이전 댓글 표시
I need to repeat the same sequence 33 times.
t_puls = [0 30 30 60 60 90 90 120 120 910]';
this describes the time for my Current I. The number 0 being 0 seconds and 910 being 910 seconds.
I_puls = [11.5 11.5 2.5 2.5 11.5 11.5 2.5 2.5 11.5 11.5]';
This describes my current according to the time.
I need this exact sequence to be repeated exactly the way it is, but 33 times without pause. Can anyone help me?
답변 (2개)
Read about repmat.
A = [1 2 3] ;
B = repmat(A,1,3)
댓글 수: 4
Bernardo Farfan Valencia
2021년 11월 24일
Bernardo Farfan Valencia
2021년 11월 24일
KSSV
2021년 11월 24일
What do you mean by increasing time time by 880 sec?
Bernardo Farfan Valencia
2021년 11월 24일
Image Analyst
2021년 11월 24일
Try this:
n = 911 * 33;
m = reshape(0:(n-1), [], 33);
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!