How can I separate data that does not fit the required format?
1 view (last 30 days)
Show older comments
Joey Menicucci
on 10 Dec 2020
Commented: Joey Menicucci
on 12 Dec 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 Comments
Accepted Answer
Timo Dietz
on 10 Dec 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 '&'
More Answers (0)
See Also
Categories
Find more on Get Started with MATLAB 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!