Strings and numbers in the same matrix
Show older comments
Ok, so I have a bunch of data. I want to store this data in some kind of matrix with rows and columns for easy usage. The data is made up of both strings and regular numbers, mixed. Storing the data as a matrix is fine (I've used a string matrix), but getting to the data afterwards prooves to be troublesome.
Getting the strings out are no problem, but I need to be able to calculate other stuff with the numbers. Since I've saved everything as a string matrix I can't just use the numbers as they are, so I tried using str2double, but that just returns NaN.
I've also tried using a regular matrix to store the data, but that just stores the strings in individual letters, which won't work at all, since the length of the strings themselves will vary between data sets.
Any ideas on how to solve this problem? It doesn't really matter if it's a string matrix or a regular one, as long as it works!
Thanks in advance, Erik
Accepted Answer
More Answers (1)
Jessica
on 26 Jul 2011
I've used str2double() a lot and never had it return NaN.
Are you trying to convert something like A = 'abc123' to a number? That's the only way I can think of that you're getting NaN with str2double(). If that's the case, you'll have to separate out the numbers from the characters first.
You can use regexp for this (help regexp).
% The following will give you the indices of the numbers in your string:
digit_index = regexp(A,'\d') ;
numbers = str2double(A(digit_index)) ;
I hope this helps.
Categories
Find more on Characters and Strings 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!