Info
此问题已关闭。 请重新打开它进行编辑或回答。
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 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Star Strider
2016-9-16
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 个评论
Star Strider
2016-9-16
编辑:Star Strider
2016-9-17
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.
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!