I can generate Gaussian data with random.gauss(mu, sigma) function, but how can I generate 2D gaussian? Is there any function like that?
|
|
|
Since the standard 2D Gaussian distribution is just the product of two 1D Gaussian distribution, if there are no correlation between the two axes (i.e. the covariant matrix is diagonal), just call |
|||||
|
|
If you can use For example, to get 10,000 2D samples:
where |
|||||||
|
|
Numpy has a function to do this. It is documented here. Additionally to the method proposed above it allows to draw samples with arbitrary covariance. Here is a small example, assuming
|
|||
|
|
|
I'd like to add an approximation using exponential functions. This directly generates a 2d matrix which contains a movable, symmetric 2d gaussian. I should note that I found this code on the scipy mailing list archives and modified it a little.
For reference and enhancements, it is hosted as a gist here. Pull requests welcome! |
|||
|
|