Path: news.mathworks.com!not-for-mail
From: "us " <us@neurol.unizh.ch>
Newsgroups: comp.soft-sys.matlab
Subject: Re: counting for loop operations
Date: Mon, 30 Jul 2007 13:25:23 +0000 (UTC)
Organization: Universit&#228;tsSpital Z&#252;rich
Lines: 15
Message-ID: <f8kos3$kms$1@fred.mathworks.com>
References: <f8kejl$34r$1@fred.mathworks.com> <f8kldi$mmm$1@fred.mathworks.com>
Reply-To: "us " <us@neurol.unizh.ch>
NNTP-Posting-Host: webapp-00-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1185801923 21212 172.30.248.35 (30 Jul 2007 13:25:23 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Mon, 30 Jul 2007 13:25:23 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 11
Xref: news.mathworks.com comp.soft-sys.matlab:421682


us:
<SNIP down to incomplete snippet...

>      mlint -m3 -cyc printdlg;

note: the latest <mlint> versions (finally) return a structure and some...
therefore, if you need to save your output, you could do this

     fnam='printdlg.m';
     [s,ff]=mlint('-m3','-cyc',fnam);
     ff
     s
     {s.message}.'

us