finding the indices of the first (by index) negative number in the bottom row of a matrix
이전 댓글 표시
I have T = [ 1 2 1 0 0 0 120 ; 1 1 0 1 0 0 70 ; 2 1 0 0 1 0 100 ; -5 -4 0 0 0 1 0 ]
I am interested in finding the indices of the first (by index) negative number in the bottom row of any matrix T. Here, I want the index 4 1, in some form, back.
thanks!!!!
답변 (3개)
Matt Fig
2011년 3월 24일
An alternative,
R = size(T,1);
LOC = [R find(T(R,:)<0,1,'first')]
댓글 수: 5
Walter Roberson
2011년 3월 24일
Matt, what happens when you try that on
T = zeros(7,4);
Matt Fig
2011년 3월 25일
In that case, length(LOC)==1.
I assume brittany would have to check the results either way. With your method a call to ISEMPTY will check - either way a check should be made.
Paulo Silva
2011년 3월 25일
I think you dont need to use the argument 'first', here's a compact form:
LOC=[size(T,1) find(T(end,:)<0,1)]
Paulo Silva
2011년 3월 25일
+1 vote just because I ended up with a similar solution, Walter solution is also very good!
Matt Fig
2011년 3월 25일
Good point Paulo! I forgot about that line in the help:
I = FIND(X,K,'first') is the same as I = FIND(X,K)
Walter Roberson
2011년 3월 24일
[r,c] = find(T(end,:) < 0,1);
if ~isempty(r); r(:) = size(T,1); end
brittany adam
2011년 3월 25일
0 개 추천
댓글 수: 1
Jan
2011년 3월 25일
Does this mean, that you accept one of the answers? Then please click on the corresponding button, such that others can see, that the question is solved.
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!