How to read array from a text file into each row of a matrix.
17 次查看(过去 30 天)
显示 更早的评论
Hi,
I am trying to read a text file which contains arrays in each line. I am trying to read each line into new row of a matrix.
The text file is in the following format.
[255, 255, 0, 0, 11, 0, 1, 0, 11, 11, 11, 11, 11, 11]
[255, 255, 0, 0, 18, 0, 1, 0, 18, 18, 18, 18, 18, 18]
[255, 255, 0, 0, 12, 0, 1, 0, 12, 12, 12, 12, 12, 12]
[255, 255, 0, 0, 10, 0, 1, 9, 10, 218, 10, 138, 10, 58]
[255, 255, 0, 0, 4, 0, 1, 0, 4, 4, 4, 4, 4, 4]
.
.
.
I tried to do it using readmatrix but I am getting the following error.
Error using readmatrix (line 158)
Unable to find or open file. Check the path and
filename or file permissions.
Error in decodePyramid (line 9)
crc_ = readmatrix(dir+pktFile);
Any help is appreciated.
Thank you.
5 个评论
回答(2 个)
Voss
2022-2-26
fid = fopen('input.txt');
data = str2num(fread(fid,'*char').');
fclose(fid);
disp(data);
0 个评论
Scott MacKenzie
2022-2-26
OK, this should work. First, combine dir and pktFile using the fullfile function. Read the data using readtable, then restore the 1st and last columns to numeric values (by removing the brackets and converting to double). If you want the data in a plain matrix, follow with table2array:
T = readtable(fullfile(dir, pktFile));
T.Var1 = cellfun(@(x) str2double(x), erase(T.Var1, '['));
T.Var14 = cellfun(@(x) str2double(x), erase(T.Var14, ']'));
crc_ = table2array(T);
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 File Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!