Borrar filtros
Borrar filtros

Save coordinates in an array

15 visualizaciones (últimos 30 días)
Oliver Lestrange
Oliver Lestrange el 28 de Ag. de 2020
Respondida: Walter Roberson el 28 de Ag. de 2020
Hi,
I am itereting two loops, in order to form coordinates.
I am trying to save them with this line, because I want to keep it in an array.
[idx_x, idx_y] = [[idx_x, idx_y] ;[xi, yi] ];
xi and yi are the indexes of the loop.
for yi=1:mapa.ylength
for xi=1:mapa.xlength
if mapa.img(xi,yi,1) == 0
at(xi,yi) = at(xi,yi) + 20;%+ 26;
alturas(xi,yi) = mapa.buildingHeight;
else
alturas(xi,yi) = Movel.Altura;
end
[idx_x, idx_y] = [[idx_x, idx_y] ;[xi, yi] ];
heights = [heights; alturas(xi,yi)];
end
end
How can I do this?
Thanks!

Respuesta aceptada

Walter Roberson
Walter Roberson el 28 de Ag. de 2020
idx_x(end+1) = xi;
idx_y(end+1) = yi;

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by