This answer worked fine. However, now I realize that I need the value of m that matches the value of n found by the answer.
Find the first element of a column in a matrix that has a value equal to zero
16 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Robert Demyanovich
am 3 Jun. 2021
Kommentiert: Robert Demyanovich
am 4 Jun. 2021
I have an m by n matrix and I'm interested in the nth column. Initially all of the values in the nth column are greater than zero. As the code executes, at some point, a specific row in the nth column will equal zero. I want to determine which row that is. One issue is that after this first instance of zero, all of the subsequent rows in the nth column will also equal zero. I just want the first row in the last column that has a value of zero.
Akzeptierte Antwort
Dyuman Joshi
am 3 Jun. 2021
r=find(A(:,n)==0,1) %A is your m by n matrix after executing the code
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical 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!