Generating random numbers with normal distribution in Excel

后端 未结 7 893
心在旅途
心在旅途 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 12:10

    Use the NORMINV function together with RAND():

    =NORMINV(RAND(),10,7)
    

    To keep your set of random values from changing, select all the values, copy them, and then paste (special) the values back into the same range.


    Sample output (column A), 500 numbers generated with this formula:

    0 讨论(0)
提交回复
热议问题