Path: news.mathworks.com!not-for-mail
From: "Vihang Patil" <vihang_patil@yahoo.com>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Image name........ imshow()
Date: Sat, 1 Mar 2008 15:31:06 +0000 (UTC)
Organization: Konem Solutions
Lines: 28
Message-ID: <fqbsrq$41d$1@fred.mathworks.com>
References: <fq49s2$eup$1@fred.mathworks.com> <fq4ake$rk2$1@fred.mathworks.com> <fq8laj$r6e$1@fred.mathworks.com>
Reply-To: "Vihang Patil" <vihang_patil@yahoo.com>
NNTP-Posting-Host: webapp-02-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1204385466 4141 172.30.248.37 (1 Mar 2008 15:31:06 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Sat, 1 Mar 2008 15:31:06 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 413701
Xref: news.mathworks.com comp.soft-sys.matlab:454754


"Mamata Kukreja" <mamata_kukreja@yahoo.com> wrote in 
message <fq8laj$r6e$1@fred.mathworks.com>...

> 
> 
> Hiee Bryan,
> I am attaching a small piece of code for where i dont 
want 
> the image name to be displayed.....
> 
> path='C:\StorageTemp\tempBMPFile\deepika2.bmp';
> h1=subplot('Position',[0.49 0.63 0.1 0.16]); 
> a=char(path)
> imshow(a);
> .........................
> 


Your code doesnt show any path name on my version. But if 
it does on your version, you might want to try out this 

path='C:\StorageTemp\tempBMPFile\deepika2.bmp';
h1=subplot('Position',[0.49 0.63 0.1 0.16]); 
a=imread(path);
imshow(a);

HTH
Vihang