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?

采纳的回答

Matt Fig
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 个评论
Matt
Matt 2011-3-1
Cool! Thanks a lot!
Jan
Jan 2011-3-1
@Matt: Does this mean, that you accept the answer? Then enable the "Accepted" flag, please.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by