Can you please help me with making a 2D Guassian sample with specified means and variances?
I only know how to make a guassian curve :D
\documentclass{article}
\usepackage{paralist,pst-func, pst-plot, pst-math, pstricks-add,pgfplots}
\usetikzlibrary{patterns,matrix,arrows}
\begin{document}
\begin{tikzpicture}
\begin{axis}[hide axis,clip=false,xmin=-4,xmax=4,xlabel={X},ymin=0,ymax=1]
\addplot[color=lime, samples=100] {1/sqrt(2)*exp(-(x+1)^2/1)} ;
\end{axis}
\end{tikzpicture}
\end{document}
And here is the formula for it:

And this would be an example of three normal distributions together:

