MATLAB: To apply Gaussian in histogram

gaussianMATLAB

Is there any function already defined in Matlab to apply gaussian to the histogram???

Best Answer

Dear I guess you have histogram and you want to apply gaussian weight to it. If it is so then let say you have Histogram H. then you can apply with Gaussian weight like this.
H.*fspecial('gaussian', size(H),1.2)
you can tune 1.2 as you like.
Related Question