Generating random numbers with normal distribution in Excel

后端 未结 7 926
心在旅途
心在旅途 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:00

    The numbers generated by

    =NORMINV(RAND(),10,7)
    

    are uniformally distributed. If you want the numbers to be normally distributed, you will have to write a function I guess.

提交回复
热议问题