I'm checking two different procedures that will eventually be used with regular floating point arithmetic. I need to estimate numerical error arising from floating point arithmetic.
Is there a way to force computation on floating point numbers? Model problem could be error estimation for:
Erf[x] - Erf[x+h]
for small vaues of $h$ and large values of $x$.
$MinPrecision = $MachinePrecision; $MaxPrecision = $MachinePrecision;before the computation. Will this do what you want? if you give a MWE and what output you expect, I could try it. You can put the above inside aBlockalso. – Nasser Apr 28 '19 at 10:19