Path: news.mathworks.com!not-for-mail
From: "M K" <maha_k@mathworks.com>
Newsgroups: comp.soft-sys.matlab
Subject: Re: alternative to laod file?
Date: Tue, 29 Sep 2009 10:57:02 +0000 (UTC)
Organization: The MathWorks, Inc.
Lines: 12
Message-ID: <h9sp5u$7sn$1@fred.mathworks.com>
References: <h9snuj$csk$1@fred.mathworks.com> <d9f2404e-9774-4ee2-bda3-472235cc1296@e8g2000yqo.googlegroups.com>
Reply-To: "M K" <maha_k@mathworks.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 1254221822 8087 172.30.248.37 (29 Sep 2009 10:57:02 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Tue, 29 Sep 2009 10:57:02 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 1115780
Xref: news.mathworks.com comp.soft-sys.matlab:573624


Thanks for your reply, Rune.
 

I do know the number of  rows and columns of uncorrupt data (say for ex 999 x 1000).  So the following should work

u=1:500;

   FID=ID=['Rx' num2str(u) '.txt']
   D=texscan(FID,999,1000);
end

?