How can I separate data that does not fit the required format?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Joey Menicucci
am 10 Dez. 2020
Kommentiert: Joey Menicucci
am 12 Dez. 2020
Hello,
I'm writing a script that processes hex data from a force/torque sensor. Each reading is a row of 25 characters in the following format:
7FFBC0011FF4200000000FFFC
Every once in a while I'll get a bad reading that looks like the following:
3FFBC00ý“”“&&LL˜˜00FFFC
Note: These bad readings still have 25 characters similar to the good data.
I want to write something that will separate these rows from the rest of the data. What would be the best way to do this?
Maybe something that finds rows that have non-letter and non-integer characters?
Any help is appreciated! Thanks in advance!
0 Kommentare
Akzeptierte Antwort
Timo Dietz
am 10 Dez. 2020
Maybe I didn't get your issue, but what about using "contains" and searching for a specific identifier?
E.g. contains([your_hex_array], '&') gives you all indices of an array containing the character '&'
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB 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!