MathGroup Archive 1996

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: help! to input data...

  • To: mathgroup at smc.vnet.net
  • Subject: [mg4248] Re: [mg4204] help! to input data...
  • From: "Richard L. Bowman" <rbowman at bridgewater.edu>
  • Date: Sun, 23 Jun 1996 03:07:21 -0400
  • Sender: owner-wri-mathgroup at wolfram.com

On Thu, 13 Jun 1996, todd c. doehring wrote:

> well, silly me.
> I thought i was pretty good at the basics of mathematica, but today i 
> tried to input some numerical data that was comma delimited. i.e.
> 
> 456,-45,21,0,5
> 43,25,3,66,65
> ...
>[stuff deleted] 
> but all i ever get is the first number and an error such as:

I am working on a NeXT, but the following should work.

In[1]:= ReadList["temp.txt",Number,RecordSeparators->{",","\n"}]

Out[1]= {1.23, -2.34, -3.45, -0.99, 0.099, 0.999}

A listing of my input file is given below:

% cat temp.txt
 1.23, -2.34,-3.45
-.99,0.099, 0.999

-------------------------------------------------------------------------
Dr. Richard L. Bowman
Dept. of Physics                         e-mail:  rbowman at bridgewater.edu
Bridgewater College                                  phone:  540-828-5441
Bridgewater, VA  22812                                 FAX:  540-828-5479
  "http://www.bridgewater.edu/departments/physics/physics.html";
-------------------------------------------------------------------------



==== [MESSAGE SEPARATOR] ====


  • Prev by Date: Re: Position[] pattern matching
  • Next by Date: Comparison of Mathematica on Various Computers
  • Previous by thread: Re: help! to input data...
  • Next by thread: Re: help! to input data...