如何从标准正态分布中抽取大小为 n 的样本?

How to draw a sample of size n from a standard normal distribution?

我知道如何生成大小为 n 的样本,但我不确定如何在每个样本中获取 10 个数字的 500 个样本(10 x 500 矩阵) .

在 R 中我会使用 replicate。它在 Stata 中的等效项是什么?

这是您要找的吗?

clear

set obs 500

forvalues i = 1/10 {
    gen sample`i' = rnormal()
}