Top "Gaussian" questions

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

How to obtain a gaussian filter in python

I am using python to create a gaussian filter of size 5x5. I saw this post here where they talk …

python matlab numpy gaussian
How to make a Gaussian filter in Matlab

I have tried to make a Gaussian filter in Matlab without using imfilter() and fspecial(). I have tried this but …

image matlab gaussian
Gaussian Filter on a vector in Matlab

I have a n-dimensional vector (1xn dataset, and it is not image data), and I want to apply a Gaussian …

matlab vector filter gaussian
Creating a Gaussian Random Generator with a mean and standard deviation

I am trying to create a one dimensional array and use a random number generator(Gaussian generator that generates a …

c++ random gaussian normal-distribution
How can I fit a gaussian curve in python?

I'm given an array and when I plot it I get a gaussian shape with some noise. I want to …

python scipy curve-fitting gaussian
Test if a data distribution follows a Gaussian distribution in MATLAB

I have some data points and their mean point. I need to find whether those data points (with that mean) …

matlab statistics distribution gaussian
Random Numbers with Gaussian and Uniform Distributions in matlab

I want generate a number in Gaussian and Uniform distributions in matlab. I know this function randi and rand() but …

matlab gaussian normal-distribution uniform-distribution
How to specify upper and lower limits when using numpy.random.normal

I want to be able to pick values from a normal distribution that only ever fall between 0 and 1. In some …

python numpy random scipy gaussian
Optimal sigma for Gaussian filtering of an image?

When applying a Gaussian blur to an image, typically the sigma is a parameter (examples include Matlab and ImageJ). How …

image-processing parameters filter gaussian
Generating numbers with Gaussian function in a range using python

I want to use the gaussian function in python to generate some numbers between a specific range giving the mean …

python gaussian