Moving Data to Matlab

Here is the easiest way to move data such as a table to matlab. First, put it in a file in ASCII, like
1 10
2 25
3     30
4  25
5  -6
Let's say that this file is called dans.dat. To load this data into a variable in matlab, you would type (in matlab)
>> Table = load('dans.dat');
Let's now take a look:
>> T

T =

     1    10
     2    25
     3    30
     4    25
     5    -6
Now, you can do all your plotting in Matlab, whatever program you use!
Dan Spielman
Last modified: Mon Sep 23 11:10:33 EDT 2002