Clear Filters
Clear Filters

import some data from a text file

1 view (last 30 days)
Baba
Baba on 31 Oct 2011
Hi, I have a text file with space separated numbers that I need to import into Matlab to do some processing on. Can not use the "load" command to import the whole file because it's way too big (5Gb). Text file looks like this:
1.2 4.2 5.2 5.33 6.45 7.64 3.45 7.34 ........
2.34 5.23 .235 .2343 2.34 3.4 3.42........
and so on with
What I'd like to do is be able to read in and Store first 10 values of each row into a column vector. Then the next 10 values of each row and o on...
to have something like:
X=[row1 (1 thru 10); row2 (1 thru 10);...]
or more generally,
y=[row1 (start position thru end position;.....]
Any help appreciated,
Thank you!
  1 Comment
Walter Roberson
Walter Roberson on 31 Oct 2011
Original is at http://www.mathworks.com/matlabcentral/answers/19851-reading-data-into-matlab

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 31 Oct 2011
This is the same question you asked before, accepted my answer, and then apparently closed before having resolved your questions (or even indicating what your concerns were). As you did not even reference that previous question, I must presume that I was totally off track as to what you were trying to do, and thus that this question is best left to someone else to answer, with my original answer serving others mostly as a hint as to what not to answer.

Categories

Find more on Data Import and Analysis in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!