how to repeat [5,4,3,2,1.....] infinitely?
조회 수: 4 (최근 30일)
이전 댓글 표시
how could I?
can someone give me a code?
댓글 수: 1
Rik
2022년 3월 31일
Your computer does not have infinite memory. What exactly did you intend to do with this infinite vector?
답변 (1개)
Bruno Luong
2022년 3월 31일
편집: Bruno Luong
2022년 3월 31일
A meta-array:
x = rep5to1(100:120)
%%
function x = rep5to1(i)
a=5:-1:1;
x = a(mod(i-1,length(a))+1);
end
댓글 수: 0
참고 항목
카테고리
Help Center 및 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!