Reading in a text file with numbers and strings into a cell array
Show older comments
Hi everyone, I've attached the text file here, and what I'm trying to do is read in line by line and put the strings and numbers into a cell array.
Ideally I would like to read this into a cell array that looks like this:
First Index
0 1 6 2 3
1 3 2 4 0
2 1 6 4 7
3 0 1 4 7
4 0 5 6 1
5 0 1 2 3
...etc
(I just put a bunch of spaces between the numbers but I actually need them in different cells)
(Its okay if the words/strings are all in the same cell because I'm going to try to find a way to skip that anyways)
Can anyone please assist with this? and do you think you can explain how you make it return to the next cell row after 5 columns?
When I try a code like this, I just get all the data in one cell:
t = readtable('index.txt', 'ReadVariableNames', false);
Accepted Answer
More Answers (0)
Categories
Find more on Matrix Indexing 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!