how can i create a loop which reads rows in an array?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
ME
am 16 Mär. 2015
Kommentiert: Image Analyst
am 17 Mär. 2015
I want to create a loop which read each row in an array. the array have dimensions of 90x2.
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 17 Mär. 2015
[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 Kommentare
Image Analyst
am 17 Mär. 2015
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
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!