On Sat, 20 Jul 2024 06:20:00 +0200
Uwe Ligges wrote:
>
> Strange. Your package has been processed. Have you tried again?
> Are you sure the maintainer address is specified correctly and that
> the auto generated message did not make it onto your spam box?
>
> If it still does not work, please s
Dear Khue,
As mentioned before, you can use Rmpfr to read in strings or compute higher
precision values, like
x = mpfr(1, 192) /10;
# 0.1 with 192 bits precision
# or x = mpfr("0.1", 192);
mpfr(1, 192) /10 - mpfr("0.1", 192)
# 1 'mpfr' number of precision 192 bits
# [1] 0
However, I do not