How to read only numerical values of serial output data in MATLAB?
Show older comments
I just want to read the integer values (number) in the output text file (serial data)...... I need some assistance.....
Accepted Answer
More Answers (2)
Yongjian Feng
on 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 Comment
Sohail Ahmed
on 8 Nov 2021
Edited: Sohail Ahmed
on 8 Nov 2021
Sohail Ahmed
on 10 Nov 2021
0 votes
1 Comment
Walter Roberson
on 10 Nov 2021
Please remember to Accept the solution that worked for you.
Categories
Find more on Large Files and Big Data 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!