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개)

An alternative,
R = size(T,1);
LOC = [R find(T(R,:)<0,1,'first')]

댓글 수: 5

Matt, what happens when you try that on
T = zeros(7,4);
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.
I think you dont need to use the argument 'first', here's a compact form:
LOC=[size(T,1) find(T(end,:)<0,1)]
+1 vote just because I ended up with a similar solution, Walter solution is also very good!
Good point Paulo! I forgot about that line in the help:
I = FIND(X,K,'first') is the same as I = FIND(X,K)

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

[r,c] = find(T(end,:) < 0,1);
if ~isempty(r); r(:) = size(T,1); end
brittany adam
brittany adam 2011년 3월 25일
thanks thanks!! you're awesome.

댓글 수: 1

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에 대해 자세히 알아보기

질문:

2011년 3월 24일

Community Treasure Hunt

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

Start Hunting!

Translated by