I need some basic help. I have a cell array:
- TITLE 13122423
- NAME Bob
- PROVIDER James
and many more rows with text...
- 234 456 234 345
- 324 346 234 345
- 344 454 462 435
and many MANY (>4000) more with only numbers
- text
- text
and more text and mixed entries
Now what I want is to delete all the rows where the first column contain a character, and end up with only those rows containing numbers. Row 44 - 46 in this example.
I tried to use
rawdataTruncated(strncmp(rawdataTruncated(:, 1), 'A', 1), :) = [];
but then i need to go throught the whole alphabet, right?