How to read only numerical values of serial output data in MATLAB?
Afficher commentaires plus anciens
I just want to read the integer values (number) in the output text file (serial data)...... I need some assistance.....
Réponse acceptée
Plus de réponses (2)
Yongjian Feng
le 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 commentaire
Sohail Ahmed
le 8 Nov 2021
Modifié(e) : Sohail Ahmed
le 8 Nov 2021
Sohail Ahmed
le 10 Nov 2021
0 votes
1 commentaire
Walter Roberson
le 10 Nov 2021
Please remember to Accept the solution that worked for you.
Catégories
En savoir plus sur Large Files and Big Data dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!