How to read only numerical values of serial output data in MATLAB?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Sohail Ahmed
am 6 Nov. 2021
Kommentiert: Walter Roberson
am 10 Nov. 2021
I just want to read the integer values (number) in the output text file (serial data)...... I need some assistance.....
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 8 Nov. 2021
filename = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/791754/Log_file.txt';
data = readmatrix(filename, 'Range', 'C:C')
0 Kommentare
Weitere Antworten (2)
Yongjian Feng
am 6 Nov. 2021
Your data file looks like a configuration file with key/value pair separated by ':'. One way to parse the data is to do this for each row:
rowStr = 'ADC0/F1 : 1562';
tokens = split(rowStr, ':');
intValue = str2double(strtrim(tokens(2)));
1 Kommentar
Siehe auch
Kategorien
Mehr zu Text Files finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!