Path: news.mathworks.com!not-for-mail
From: <HIDDEN>
Newsgroups: comp.soft-sys.matlab
Subject: Re: changing position of a image
Date: Sun, 30 Nov 2008 02:40:18 +0000 (UTC)
Organization: The MathWorks, Inc.
Lines: 22
Message-ID: <ggsuei$2u8$1@fred.mathworks.com>
References: <ggsqge$hrt$1@fred.mathworks.com> <ggssrd$h2g$1@fred.mathworks.com>
Reply-To: <HIDDEN>
NNTP-Posting-Host: webapp-05-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1228012818 3016 172.30.248.35 (30 Nov 2008 02:40:18 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Sun, 30 Nov 2008 02:40:18 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 1598967
Xref: news.mathworks.com comp.soft-sys.matlab:503863



> I would suggest first checking the units property of your axes and figure.  Assuming that isn't the problem, you might take a look at the solution someone provided me in this thread.  I was trying to "stack" images:
> 
> http://www.mathworks.com/matlabcentral/newsreader/view_thread/237542
> 
> Also, could you make image3 and image1 share the same axes?  I think that would make the problem easier to manage.

im making some experiences
and when i put im guide .m file:

handles.redI = imread('red_spot.jpg');
pos_act =get(handles.axes3,'Position')
set(handles.axes3,'Position',[111 111 pos_act(3) pos_act(4)]);
image(handles.redI);
axis off;

my image dissipates, and the image that i had associate in handles.axes3 and to change position several times.

i don't know what to do, im to novice in matlab guide.
the image is only a red point that i want to put in front of the image that is in handles.axes2

thanks for the help.