Difference between single and double in matlab?

20 次查看(过去 30 天)
Althought both are different data types of MATLAB but what is difference between these two data types. Is it only that double has 64 bits and has more storage place and can store comparativeltly large value??
I was writing a code in MATLAB
clc
close all
clear all
x1=single(550000000)+single(5000000)+single(200000)+single(18300)
x2=550000000+5000000+200000+18300
CX1=class(x1)
CX2=class(x2)
Why do i get different answers for x1 and x2?? The last two lines CX1 and CX2 tell us that x1 is single while x2 is double but why we don't get equal value in both x1 and x2?

采纳的回答

David Goodmanson
David Goodmanson 2020-2-23
编辑:David Goodmanson 2020-2-23
Hi ABT
the reason is that you are adding a small number (18300) to a large number (550000000 +5000000 + 200000) and 'single' does not have enough significant figures to accomplish this. Single needs some bits for an exponent and a sign, and there are not enough bits left over (23 in the ieee754 single-precision standard) to do the job. If you replace single with int32, there are enough bits and it works. Here int32 only needs one bit for the sign and the rest of them can contribute to significant figures.
  2 个评论
David Goodmanson
David Goodmanson 2020-2-23
编辑:David Goodmanson 2020-2-23
x1 = int32(55e7) etc. See 'doc numeric types', > create numeric variables

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Whos 的更多信息

标签

产品


版本

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by