Hi all, I want help regarding loops in MATLAB, such that each iteration take values from a data set with the step size of 5? Which loop is most suitable?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi all, I want help regarding loops in MATLAB, such that each iteration take values from a data set with the step size of 5? Which loop is most suitable?
Please share some sample code.
댓글 수: 0
채택된 답변
Bhaskar R
2019년 11월 1일
For step size of 5
values = 1:5:n; % n is the required length of your data
Refer the documenations on loops and colon operations
Hope helps you
추가 답변 (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!