how to add external image in a matlab picture
    7 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Matt
 el 28 de Oct. de 2014
  
    
    
    
    
    Comentada: Chad Greene
      
      
 el 28 de Oct. de 2014
            how can I add external image in a matlab plot. Lets say for example i have Y=x plot and i want to add my photo at the top of the plot.
I appriciate your help.
Thanks
Matt
0 comentarios
Respuesta aceptada
  Chad Greene
      
      
 el 28 de Oct. de 2014
        Run this code:
figure 
plot(1:100,(1:100).^2,'b')
axes('pos',[.3 .5 .3 .3])
I = imread('eight.tif');
imshow(I)
1 comentario
  Chad Greene
      
      
 el 28 de Oct. de 2014
				Above, the axes command creates a new set of axes at the position given by [lowerleftx lowerlefty width height]
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!