How can I separate data that does not fit the required format?

1 visualización (últimos 30 días)
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!

Respuesta aceptada

Timo Dietz
Timo Dietz el 10 de Dic. de 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 '&'

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by