Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How to convert string "26/7" into a double variable?

1 回表示 (過去 30 日間)
Muhammed Yusuf Aksel
Muhammed Yusuf Aksel 2020 年 4 月 4 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I've tried str2double("26/7"), however it gave NaN as output.
Thanks in advance.

回答 (3 件)

Stephen23
Stephen23 2020 年 4 月 4 日
編集済み: Stephen23 2020 年 4 月 4 日
>> str = '26/7';
>> vec = sscanf(str,'%f/%f');
>> vec(1)./vec(2)
ans = 3.7143
One line (but I would not recommend using this):
>> prod(sscanf(str,'%f/%f').^[1;-1])
ans = 3.7143
  1 件のコメント
Muhammed Yusuf Aksel
Muhammed Yusuf Aksel 2020 年 4 月 4 日
Nice! thanks.

John D'Errico
John D'Errico 2020 年 4 月 4 日
編集済み: John D'Errico 2020 年 4 月 4 日
Whilst I am one of the people who tends to equate eval with evil...
str = '22/7';
eval(str)
ans =
3.14285714285714
Sometimes it can come to the rescue. Eval has a Dr. Jekyll and Mr Hyde thing about it though, so beware the dark side. ;-)
  6 件のコメント
John D'Errico
John D'Errico 2020 年 4 月 4 日
編集済み: John D'Errico 2020 年 4 月 4 日
Yes. str2num is an option too. But then I could not have called it evil quite as easily. :)
And yes, the Jekyll and Hyde remark was something I wondered if others would catch.
Not unlike putting a reference to a slide rule in an answer these days. Most people today would look at a slide rule with a blank stare, wondering what anyone would do with it.
I did cherish my slide rule. They are mainly relegated to the antique shops now, in a sense a loss. :{
Stephen23
Stephen23 2020 年 4 月 4 日
As well as being insecure eval is also slower than sscanf and rdivide, e.g. 1e5 iterations:
Elapsed time is 1.088572 seconds. % SSCAF and RDIVIDE
Elapsed time is 5.502366 seconds. % evil EVAL

KALYAN ACHARJYA
KALYAN ACHARJYA 2020 年 4 月 4 日
編集済み: KALYAN ACHARJYA 2020 年 4 月 4 日
X = str2double(str) converts the text in str to double precision values.
Text is "22/7" This is not a number right "/" . What do you expect at the output?
Same case:
>> X = str2double('22+7')
X =
NaN
But if we add then
>> X = str2double('29')
X =
29
  1 件のコメント
Muhammed Yusuf Aksel
Muhammed Yusuf Aksel 2020 年 4 月 4 日
So, isn't there any way to evaluate the value of "22/7" first and then store as a double?

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by