str2double breaks when you pass in a vector?
10 views (last 30 days)
Show older comments
this works:
double = str2double('06012015');
but this doesn't:
doubles = str2double(['06012015' '06022015']);
whos doubles gives me this:
-------
6.0120e+14
Name Size Bytes Class Attributes
doubles 1x1 8 double
-------
1 Comment
Answers (2)
KSSV
on 28 Dec 2016
str1 = str2double([{'106012015'} {'06022015'}])
str2 = str2num(['06012015' ;'06022015'])
2 Comments
Sean de Wolski
on 28 Dec 2016
In >=R2016b, you can just call double on the string directly:
double(string({'06012015' '06022015'}))
0 Comments
See Also
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!