Definitive answer on the correct str2double behavior for the string '10 20'
Show older comments
Under Windows 7 with R2014a, str2double('10 20') evaluates to NaN. I believe this is the correct behavior, per the documentation.
A colleague working in a Linux environment with R2014a reports that str2double('10 20') evaluates to an array [10 20].
1. Is this possible (without overloading)? 2. Am I correct that the intended evaluation (without overloading) is NaN?
Thanks so much.
Accepted Answer
More Answers (1)
Azzi Abdelmalek
on 9 Jul 2014
Edited: Azzi Abdelmalek
on 9 Jul 2014
str2num('10 20')
will give an array, maybe that's what your colleague has used
Categories
Find more on Data Type Conversion in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!