If I run the factorial(1:200)
, the largest value is 7.257416e+306
, any value above that is "Inf"
.
- Does this means the largest value inside R programming is
7.257416e+306
. We can not calculate the value abovefactorial(170)
? - But when I run the code ".Machine$double.xmax", the biggest value is
1.797693e+308
.
So, I am a bit confused, which one is the biggest value in R?