index an array with arrays
Mostrar comentarios más antiguos
I have two index arrays i1 and i2 and a data array data.
I want to set the areas of data in the following way:
data([i1(1):i2(1), i1(2):i2(2)]) = ... % and so on
Is there a way to do that fast without loops? It can be achieved via
for i=1:length(d1)
data(d1(i):d2(i)) = 1.0;
end
3 comentarios
Kevin Phung
el 29 de Mzo. de 2019
can you be more clear in what you are trying to do? maybe give an example
James Tursa
el 29 de Mzo. de 2019
How many dimensions does "data" have? Could that vary?
Christian Hufnagel
el 29 de Mzo. de 2019
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Matrix Indexing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!