Find index of first zero searching from left first column first row, then find index of first zero searching from last column last row
75 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
monkey_matlab
am 22 Okt. 2017
Bearbeitet: Cedric
am 22 Okt. 2017
Hello,
In the code below, I am attempting to find the index of first zero searching from the left first column first row, going down the column, then find the index of first zero from last column last row searching up (as shown in the arrows below)?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/168580/image.png)
In the picture above, rstart = 1, cstart = 1, rstop = 10, cstop = 20.
How do I go about accomplishing this task.
This is what I have so far:
n = 10;
m = 20;
M = randi([0 1], n,m);
for i = 1:1:n
for j = 1:1:m
if M(i,j) == 0
rstart = i;
cstart = j;
break
end
end
end
for ii = n:-1:1
for jj = m:-1:1
if M(ii,jj) == 0
rstop = ii;
cstop = jj;
break
end
end
end
0 Kommentare
Akzeptierte Antwort
Cedric
am 22 Okt. 2017
Bearbeitet: Cedric
am 22 Okt. 2017
MATLAB stores data column first in memory. Accessing your 2D array linearly follows this structure. Evaluate
>> M(:)
and you will see a column vector that represents the content of the array read column per column. This means that you can FIND the linear index of these 0s using the 'first' (default) or 'last' options of FIND, by operating on M(:):
>> M = randi( 10, 4, 5 ) > 5
M =
4×5 logical array
1 1 1 1 0
1 0 1 0 1
0 0 0 1 1
1 1 1 0 1
>> linId = find( M(:) == 0, 1 )
linId =
3
>> linId = find( M(:) == 0, 1, 'last' )
linId =
17
What remains is to convert linear indices back to subscripts, and you can do this using IND2SUB. For example:
>> [r,c] = ind2sub( size( M ), find( M(:) == 0, 1, 'last' ))
r =
1
c =
5
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!