how can i create a loop which reads rows in an array?
조회 수: 1 (최근 30일)
이전 댓글 표시
I want to create a loop which read each row in an array. the array have dimensions of 90x2.
댓글 수: 0
채택된 답변
Image Analyst
2015년 3월 17일
[rows, columns] = size(array);
for row = 1 : rows
thisRow = array(row, :) % No ; so it will echo to command window.
% Now do something with thisRow.....
end
댓글 수: 4
Image Analyst
2015년 3월 17일
Try
if all(thisRow == rowFromV)
To format your code, read this: http://www.mathworks.com/matlabcentral/answers/13205-tutorial-how-to-format-your-question-with-markup
추가 답변 (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!