Borrar filtros
Borrar filtros

Allocating values in 1d matrix

1 visualización (últimos 30 días)
Da'Moon
Da'Moon el 6 de Dic. de 2017
Editada: Da'Moon el 6 de Dic. de 2017
B = p * ones(327,245,2, uint8); can i do it with a loop?

Respuesta aceptada

Image Analyst
Image Analyst el 6 de Dic. de 2017
No need for for loops, especially ones that don't work. Simply use ones:
B = p * ones(327,245,2, 'uint8');
  1 comentario
Image Analyst
Image Analyst el 6 de Dic. de 2017
Try this:
p=uint8(0);
for L = 3 : -1 : 1
for row = 327 : -1 : 1
for col = 245 : -1 : 1
B(row, col, L)=p;
end
end
end
It's a very inefficient way of doing it. I reverse the indexes to try to make it more efficient though. You should NOT want to do it this way.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays 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