Info
This question is closed. Reopen it to edit or answer.
I would like to import a matrix that has filenames in the first row with numbers and a letter. How can I do this wihout it importing as NaN? It's not a date format.
1 view (last 30 days)
Show older comments
Hello,
I am trying to import a data matrix that has the first row as the Sample ID, which has numbers and a letter: e.g., 20W03091907521748421. When I import it, this gets converted to NaN. Is there some way I can import it into the matrix as the first row and keep its name please? The only other option I could find was date format.
0 Comments
Answers (1)
Star Strider
on 16 Sep 2016
You’re not saying how you’re importing it. If you’re using textscan, I would import it as a string. If you need to parse the numbers and letters, you can do that later with a regexp call:
str = '20W03091907521748421';
parsed = regexp(str, '\d+|([A-Z]?)', 'match')
parsed =
'20' 'W' '03091907521748421'
2 Comments
Star Strider
on 16 Sep 2016
Edited: Star Strider
on 17 Sep 2016
My pleasure.
I would use textscan. I generally do not use the import tab because textscan gives me more control over the way my file is imported.
EDIT — (16 Sep 2016 at 01:30 UTC)
I can help you if you post your file or at least several rows of it. Writing textscan code is relatively straightforward, but I can’t do it without your file. Use the ‘paperclip’ icon to upload it to your original Question or to a Comment here.
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!