Matlab can not split the txt file.
Show older comments
Hello
I have a text file which matlab can not split to different cell arrays using import data command.
Since I have many of these files I really do not know how to solve the issue, can anybody help? Thanks
I can bring the data to matlab arrays using the lines below:
- delimiterIn = ' ';
- headerlinesIn = 100;
- A = importdata(path,delimiterIn,headerlinesIn);
where path is the address I use to open the text file, but it takes all the data of a line to one cell array but I can not do any analysis on it.
Best regards
Saeed
Answers (2)
Walter Roberson
on 12 Dec 2012
1 vote
textscan() with HeaderLines as appropriate, and format '%f%f%f%f%s%f%f'
Saeed
on 13 Dec 2012
0 votes
Categories
Find more on Text Data Preparation 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!