Path: news.mathworks.com!not-for-mail
From: "Steve Amphlett" <Firstname.Lastname@Where-I-Work.com>
Newsgroups: comp.soft-sys.matlab
Subject: Re: do while
Date: Thu, 15 May 2008 16:40:19 +0000 (UTC)
Organization: Ricardo UK Ltd
Lines: 16
Message-ID: <g0hp1j$k93$1@fred.mathworks.com>
References: <g0gt2m$h3q$1@fred.mathworks.com>
Reply-To: "Steve Amphlett" <Firstname.Lastname@Where-I-Work.com>
NNTP-Posting-Host: webapp-03-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1210869619 20771 172.30.248.38 (15 May 2008 16:40:19 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Thu, 15 May 2008 16:40:19 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 43398
Xref: news.mathworks.com comp.soft-sys.matlab:468627


"Deo " <spliers@hotmail.com> wrote in message 
<g0gt2m$h3q$1@fred.mathworks.com>...
> is there a matlab command equivalent to the C do while

Another abomination:

first=true;
while(condition || first)

% stuff

first=false;
end