Path: news.mathworks.com!newsfeed-00.mathworks.com!newsfeed2.dallas1.level3.net!news.level3.com!postnews.google.com!y79g2000hsa.googlegroups.com!not-for-mail
From: dorina_tarnovan <dorina_tarnovan@yahoo.com>
Newsgroups: comp.soft-sys.matlab
Subject: Re: report generator - include figures
Date: Tue, 21 Oct 2008 04:57:10 -0700 (PDT)
Organization: http://groups.google.com
Lines: 11
Message-ID: <621e2024-bd45-4af5-b493-abe97fdff3b8@y79g2000hsa.googlegroups.com>
References: <e516236d-985a-4893-a77b-fef0d242be25@q35g2000hsg.googlegroups.com>
NNTP-Posting-Host: 193.202.20.11
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
X-Trace: posting.google.com 1224590231 4888 127.0.0.1 (21 Oct 2008 11:57:11 GMT)
X-Complaints-To: groups-abuse@google.com
NNTP-Posting-Date: Tue, 21 Oct 2008 11:57:11 +0000 (UTC)
Complaints-To: groups-abuse@google.com
Injection-Info: y79g2000hsa.googlegroups.com; posting-host=193.202.20.11; 
	posting-account=feY1ggoAAAAt1KNryhWORy4gnWSujwA9
User-Agent: G2/1.0
X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; 
	InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 
	3.0.04506.30),gzip(gfe),gzip(gfe)
Xref: news.mathworks.com comp.soft-sys.matlab:496505


I fixed this, by changing my code to:

     figure(1);
     hist(MD_1,100);
     set(1,'tag','some');

     figure(2);
     hist(MD_2,100);
     set(2,'tag','some');

And then I search for figures with this tag(In the "Figure Loop").