If statements with matricies
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Matt Fig
il 1 Mar 2011
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 Commenti
Jan
il 1 Mar 2011
@Matt: Does this mean, that you accept the answer? Then enable the "Accepted" flag, please.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!