0

The R source code of dnorm is:

function (x, mean = 0, sd = 1, log = FALSE) .Call(C_dnorm, x, mean, sd, log)

How can i see the source code of dnorm in C_dnorm?

1 Answers1