Generating random numbers with normal distribution in Excel

后端 未结 7 920
心在旅途
心在旅途 2020-12-23 11:10

I want to produce 100 random numbers with normal distribution (with µ=10, σ=7) and then draw a quantity diagram for these numbers.

How can I produce random numbers w

7条回答
  •  温柔的废话
    2020-12-23 11:59

    Rand() does generate a uniform distribution of random numbers between 0 and 1, but the norminv (or norm.inv) function is taking the uniform distributed Rand() as an input to generate the normally distributed sample set.

提交回复
热议问题