Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
can someone help me fix this for loop ?
조회 수: 2 (최근 30일)
이전 댓글 표시
I have three more arrays w, u and v they all have some elements from the array but w, u and v are all unique so do not have matching rows.
I want to be able to set the condition in this loop so that
[rows, columns] = size(pair); for row = 1 : rows thisRow = pair(row, :);
*if (thisRow == rowFromV) do something ..
else if (thisRow == rowFromW) do something...
else if (thisRow == rowFromU) do something
end end end*
I need for it to be able to scan this row against rows from u w and v ... please somebody help
댓글 수: 0
답변 (1개)
Image Analyst
2015년 3월 17일
Like I said in your duplicate question, use the all() function:
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
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!