| Author |
Comment/Response |
Bill Simpson
|
05/31/12 1:15pm
This assumes you have put your Excel sheet into your Mathematica folder OR you learn about how to specify paths within Mathematica.
I created a sheet with 8 rows of 2 columns similar to what you described
In[1]:= allrows=Import["Book1.xls"]
Out[1]= {{1.,2.},{2.,5.},{3.,3.},{4.,4.},{5.,1.},{6.,8.},{7.,3.},{8.,7.}}
Now drop the first 3 rows
In[2]:= restrows=Drop[allrows,3]
Out[2]= {{4.,4.},{5.,1.},{6.,8.},{7.,3.},{8.,7.}}
URL: , |
|