Top "Gaussian" questions

For issues related to any of the uses of the Gaussian function.

Overlay normal curve to histogram in R

I have managed to find online how to overlay a normal curve to a histogram in R, but I would …

r plot histogram gaussian
Gaussian filter in MATLAB

Does the 'gaussian' filter in MATLAB convolve the image with the Gaussian kernel? Also, how do you choose the parameters …

matlab image-processing filtering gaussian
Gaussian fit for Python

I'm trying to fit a Gaussian for my data (which is already a rough gaussian). I've already taken the advice …

python gaussian
Plotting of 1-dimensional Gaussian distribution function

How do I make plots of a 1-dimensional Gaussian distribution function using the mean and standard deviation parameter values (μ, σ) = (−1, 1), (0, 2), and (2, 3)? …

python plot gaussian
How to generate 2D gaussian with Python?

I can generate Gaussian data with random.gauss(mu, sigma) function, but how can I generate 2D gaussian? Is there …

python gaussian
Random Gaussian Variables

Is there a class in the standard library of .NET that gives me the functionality to create random variables that …

c# .net random gaussian normal-distribution
Implementing Gaussian Blur - How to calculate convolution matrix (kernel)

My question is very close to this question: How do I gaussian blur an image without using any in-built gaussian …

c++ matlab filter blur gaussian
JavaScript Math.random Normal distribution (Gaussian bell curve)?

I want to know if the JavaScript function Math.random uses a normal (vs. uniform) distribution or not. If not, …

javascript algorithm random distribution gaussian
How to fit a gaussian to data in matlab/octave?

I have a set of frequency data with peaks to which I need to fit a Gaussian curve and then …

matlab octave curve-fitting gaussian
Fastest Gaussian blur implementation

How do you implement the fastest possible Gaussian blur algorithm? I am going to implement it in Java, so GPU …

java image-processing filtering gaussian