Find the first element of a column in a matrix that has a value equal to zero

조회 수: 15 (최근 30일)
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.
  댓글 수: 1
Robert Demyanovich
Robert Demyanovich 2021년 6월 4일
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.

댓글을 달려면 로그인하십시오.

채택된 답변

Dyuman Joshi
Dyuman Joshi 2021년 6월 3일
r=find(A(:,n)==0,1) %A is your m by n matrix after executing the code

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by