how to read a textfile that contain an array of text values into matrix
4 ビュー (過去 30 日間)
古いコメントを表示
I have a textfile that contain tab delimited hexadecimal values and I would like to transfer the values into an array with each element will keep a value in the table (attached)
0 件のコメント
回答 (4 件)
Massimo Zanetti
2017 年 3 月 16 日
編集済み: Massimo Zanetti
2017 年 3 月 16 日
Here is it, you should know how many columns your data span (I guessed by reading your file they are 25):
%open file
fname = 'PowerUpRampSpeed_1.txt';
fileID = fopen(fname);
%read formatted data as strings of 2 characters
A = textscan(fileID,'%2c','Delimiter','\t');
%reshape the vector to matrix size
cols = 25;
A = reshape( hex2dec(char(A)) , cols , [])';
%close file
fclose(fname);
Now, A is your matrix read into Matlab.
0 件のコメント
Yoav Weizman
2017 年 3 月 20 日
編集済み: per isakson
2017 年 6 月 2 日
3 件のコメント
Walter Roberson
2017 年 6 月 2 日
Your solution leaves the values as text. Were you wanting a text array, or were you wanting a numeric array?
Walter Roberson
2017 年 6 月 2 日
Oddly, at least on OS-X, textread() is not able to read files with the original name PowerUpRampSpeed_1µs.txt claiming they do not exist . I will be filing a bug report on that.
Walter Roberson
2017 年 6 月 2 日
S = fileread('PowerUpRampSpeed_1µs.txt');
temp = regexp( regexp(S, '\r?\n', 'split'), '\W+', 'split');
output = vertcat(temp{:});
The result will be a 32 x 200 cell array of character vectors; hex values will not be converted to numeric.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Text Files についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!