How to get the value (number) that is in a string?

2 次查看(过去 30 天)
To lighten my question ,for exemple let's take d='1'; I want to increment 1 it to get 2 as result. So I tried to convert it to double by using double(d)+1; I got 50. Obviously '1' is 49 in double , same thing I got by using int8 . which function should I use to get 2 as result?

采纳的回答

Image Analyst
Image Analyst 2016-4-6
Like this:
doubleD = str2double(d);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by