Generating means from a bivariate gaussian distribution

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-04 09:25:49

Each of the means that are generated from the bivariate Gaussian distribution are simply single points sampled in exactly the same way as any other random points that could be generated from the distribution. The fact that they use these generated points to be the means of new distributions is irrelevant.

Let's say that each of the 10 means is then used to construct a new bivariate Gaussian.

means ~ N( (1,0), I)

Where ~ indicates a value being drawn from the distribution. Since the distribution being sampled from in this case is a bivariate Gaussian, each of the data points sampled will be a 2-dimensional point (x1, y1).

Each of these points sampled from the original distribution can then be used to make a new distribution.

Example:

means = [ (x1,y1), (x2,y2), ..., (x10,y10) ]

To build new bivariate Gaussians:

N1((x1,x2), I), N2((x2,y2), I), ..., N10((x10,y10), I)

They are just using the initial bivariate Gaussian distribution N((1,0), I) as an easy way to pick 10 random means that are distributed normally.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!