is it a bug?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
str2num('"abc"')
ans =
"abc"
2 Commenti
Risposta accettata
per isakson
il 7 Lug 2019
Modificato: per isakson
il 7 Lug 2019
I call this a bug.
My comments
- The old function, str2num(), uses eval() to do the conversion. "Eval is evil" or at least tricky to use. See https://se.mathworks.com/matlabcentral/answers/51946-systematic-do-not-use-global-don-t-use-eval#answer_63393
- The data type, string, is new.
- str2num('"abc"') is a clever test case, which I assume is not in their test suite.
The last lines of str2num() read
if ischar(x) || iscell(x)
x = [];
ok = false;
end
Adding || isstring to the condition solves the problem - I think.
0 Commenti
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!