| Author |
Comment/Response |
jf
|
09/05/12 11:39am
In Response To 'Re: Empty spaces in imported data' --------- To remove them after reading,
In[1]:= datn = {0.9190732648753561,,0.7448906832462404,,0.1904897704982996}
Out[1]= {0.919073,Null,0.744891,Null,0.19049}
In[2]:= DeleteCases[datn,Null]
Out[2]= {0.919073,0.744891,0.19049}
In[3]:= Select[datn, NumericQ]
Out[3]= {0.919073,0.744891,0.19049}
URL: , |
|