我无法解释这一点。我有两个具有相同值的变量,但它们并不相同。谁能告诉我我在这里缺少什么?
>> y
y =
3.4000
>> x
x =
3.4000
>> y==x
ans =
0
>> whos x
Name Size Bytes Class Attributes
x 1x1 8 double
>> whos y
Name Size Bytes Class Attributes
y 1x1 8 double
这对我来说真的很令人费解,我发誓这不是一个玩笑。