str2double:getting rid of the decimal points

4 次查看(过去 30 天)
Hi,
A={'2248866001'
'2249926001'
'2249924001'
'2249925001'
'2249906001'}
I am trying to convert to double using str2double(A) and I am receiving: 2248866001.00000 2249926001.00000 2249924001.00000 2249925001.00000 2249906001.00000
How can I get rid of these zeros?

采纳的回答

Matt Fig
Matt Fig 2011-4-25
format long g
A={'2248866001'
'2249926001'
'2249924001'
'2249925001'
'2249906001'};
str2double(A)
ans =
2248866001
2249926001
2249924001
2249925001
2249906001
This is a format setting, not a precision setting. See the help for FORMAT to decide which display setting is best for you.

更多回答(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