Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试比较两个值
y = 1 ye = 1.0000
例如,如果我在 Matlab 中进行比较,y == ye我会得到0?!
y == ye
0
中的数据y是从文本文件中读取的……这可能与此有关吗?
y
尝试在两个向量上全精度打印:
fprintf('%.15f\n',x(:))
相反,当您比较浮点数时,请使用以下内容:
abs(x1-x2) < e
e一些合适的小值在哪里
e