If statements with matricies
조회 수: 1 (최근 30일)
이전 댓글 표시
I am trying to display the matrix positions (Row and column) where the entries are greater than 10 in a given matrix.
I figured a good way to do this is to use the find(x>10) command and if the values are within a range I specify (In this case if find(x>10) >2) then I would subtract two (if the matrix is 2x2) from those two values only. (This would find the row number)
So say find(x>10) yielded the following
ans=
2
3
4
Then that would mean that in position 2,3 and 4 there are values greater than 10 and I would need to subtract 2 from the specific entries in ans. I would do something similar for the columns.
Is this a good way to go about this? Any suggestions?
댓글 수: 0
채택된 답변
Matt Fig
2011년 3월 1일
You might want the two output version of FIND. The one output version does not return the row number, but the linear index.
x = magic(6); % Sample data
[I,J] = find(x>10); % I is rows, J is columns.
Now if your goal is only to subtract 2 from the values of x which are greater than 10, and whos row and column position are greater than two (as I read your somewhat confusing post), do this:
idx = I>2 & J>2;
idx = sub2ind(size(x),I(idx),J(idx));
x(idx) = x(idx)-2
Note, if you want to display the positions, you could just use:
x>10 % Shows in command window
spy(x>10) % Shows a graph.
댓글 수: 5
Jan
2011년 3월 1일
@Matt: Does this mean, that you accept the answer? Then enable the "Accepted" flag, please.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!