I am new to R and I ran into a piece of code that I do not understand. More specifically, I would like to know what .Internal does. Here is an example that I am trying to convert to Matlab:
dunif <- function (x, min = 0, max = 1, log = FALSE)
.Internal(dunif(x, min, max, log))
<environment: namespace:stats>
I would like to know what .Internal and <environment ... > do.
Thank you much in advance, Simon