how to display multiple images in multiple axes
    4 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
if(E_dist(j) <.0061)
     subplot(3,3,m)
     %axes(handles.axes)
     imshow(I);
0 comentarios
Respuestas (1)
  Image Analyst
      
      
 el 24 de Jun. de 2014
        You need to vary m from 1 to 9 (which is 3 times 3).
2 comentarios
  Image Analyst
      
      
 el 25 de Jun. de 2014
				for m = 1 : 9
  subplot(3,3,m);
  imshow(someImage);
end
Ver también
Categorías
				Más información sobre Subplots en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

