str2double:getting rid of the decimal points

5 views (last 30 days)
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?

Accepted Answer

Matt Fig
Matt Fig on 25 Apr 2011
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.

More Answers (0)

Categories

Find more on Data Type Conversion in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!