This is basically an English language question, but since it pertains to mathematics and programming quite directly, I'll post it here.
Let $D$ denote a random number generator. More precisely, assume that $D$ is a probability measure on the real line. Maybe it's the standard normal distribution or something. Imagine we've implemented $D$ on a computer, and we decide to "sample" it 10 times and put the values thereby obtained the variables $x_0,\ldots,x_9$.
Question. What's the correct word for what I'm refer to as "sampling"?
I'd say call, as in a function call or method call.
Call the random number generator.Regarding your comments under the question, it does feel unnatural to say
run/call the standard normal distribution, but it isn't unnatural to saycall rnorm()when discussing R code, for example.