Selection of Matrix Elements without for loop

3 次查看(过去 30 天)
Hi.
I have a matrix of cooardinates like this :
A = [1 3;2 4;7 9];
And a Matrix 9x9:
B = rand(9);
How can I select B's elements in A cooardinest (for example : B(1,3) & B(2,4) & B(7,9)) without using a for loop.
Assuming that in my original code A has too many rows, ( more than 10K) and B is an image with too many points either.
As a matter of fact, I have some pixels' coordinates, and want to just update their's value in the original image by some formula. But I don't want to use for loop for selecting each pixel.

采纳的回答

madhan ravi
madhan ravi 2019-6-5
B(sub2ind(size(B),A(:,1),A(:,2)))

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by