标签: matlab symbolic-math arbitrary-precision
假设我有两个具有300位精度的变量:
a = vpa(sqrt(2),300); b = vpa(sqrt(3),300);
我想知道(b-a) > (1e-15)是真还是假。我该怎么办?
(b-a) > (1e-15)
答案 0 :(得分:0)
我认为你只是在寻找这个:
double(b-a)>(1e-15)