Path: news.mathworks.com!not-for-mail
From: <HIDDEN>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Decimal Separator
Date: Fri, 21 Nov 2008 20:47:02 +0000 (UTC)
Organization: Pierburg GmbH
Lines: 11
Message-ID: <gg76o6$qu6$1@fred.mathworks.com>
References: <gg6opu$1i2$1@fred.mathworks.com>
Reply-To: <HIDDEN>
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 1227300422 27590 172.30.248.38 (21 Nov 2008 20:47:02 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Fri, 21 Nov 2008 20:47:02 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 872224
Xref: news.mathworks.com comp.soft-sys.matlab:502409


"Ellen Arens" <ellen.e.arens@nasa.gov> wrote in message <gg6opu$1i2$1@fred.mathworks.com>...
> How can I import numeric data that uses a comma as a decimal separator?  For example, a table of 640 by 480 numberic valves.

You want to import the table from an ascii file?
Try out txt2mat from the matlab central file exchange. If the file structure is not too weird, just

A=txt2mat('myfile.txt')

will do.
Hth
Andres