Coordinates matrix to new Matrix
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
Greetings, I have a matrix size of 50 to 50 named Map1 (structured your entire library of Matlab).
I want to do this: go through all the map [i] [j] (As mentioned cordite are named path matrix). And take the value and enter a new matrix
Réponses (1)
Azzi Abdelmalek
le 3 Jan 2016
Modifié(e) : Azzi Abdelmalek
le 3 Jan 2016
Look at this example
M=randi(50,5,5) % Your data
map=[2 3;4 1;3 2] % The locations
idx=sub2ind(size(M),map)
out=M(idx)
Cette question est clôturée.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!