如果 Java 方法返回的结果在 [-9,007,199,254,740,992 到 9,007,199,254,740,992] 范围内,则根本不需要在代码中执行任何操作。您可以将结果转换回 Matlab 的 ,而不会损失任何精度。该范围内的所有整数都可以表示为数字而不会降低精度,因为该值可以存储在值的 64 位表示形式提供的 53 位有效二进制数字中。long
int64
double
double
你可以在我的书《代码质量:开源视角》(Code Quality: The Open Source Perspective)或任何其他涵盖浮点算术的教科书的第8章(浮点算术)中找到更多细节。
下面的程序演示了精确可表示范围末尾的 1 亿个整数的表示的准确性。double
#include <stdio.h>
int
main(int argc, char *argv[])
{
int i;
volatile long long n1, n2;
volatile long long p1, p2;
volatile double d;
/* Include one number outside the range, to show that the test works. */
n1 = -9007199254740993ll;
p1 = 9007199254740993ll;
for (i = 0; i < 100000000; i++) {
d = p1;
p2 = d;
if (p1 != p2)
printf("%lld != %lld\n", p1, p2);
d = n1;
n2 = d;
if (n1 != n2)
printf("%lld != %lld\n", n1, n2);
p1--;
n1++;
}
return 0;
}