Comments on: Random Variables, CDF and PDF https://www.gaussianwaves.com/2008/04/probability/ Signal Processing for Communication Systems Wed, 13 Jan 2021 06:32:19 +0000 hourly 1 https://wordpress.org/?v=6.7.2 By: ram shayan https://www.gaussianwaves.com/2008/04/probability/#comment-28167 Thu, 06 Aug 2015 09:39:00 +0000 http://www.gaussianwaves.com/2008/04/probability/#comment-28167 In reply to Mathuranathan.

Thank you….. I’ll follow. but confuse on how to start from this script….will try it.

]]>
By: Mathuranathan https://www.gaussianwaves.com/2008/04/probability/#comment-28166 Thu, 06 Aug 2015 09:10:00 +0000 http://www.gaussianwaves.com/2008/04/probability/#comment-28166 In reply to ram shayan.

Please check this post. It has the complete code.
https://www.gaussianwaves.com/2010/02/fading-channels-rayleigh-fading-2/

]]>
By: ram shayan https://www.gaussianwaves.com/2008/04/probability/#comment-28165 Thu, 06 Aug 2015 09:03:00 +0000 http://www.gaussianwaves.com/2008/04/probability/#comment-28165 sir, please help me……i want to write a MATLAB script which generates N
samples from a Rayleigh distribution, and compares the sample histogram with the
Rayleigh density function. but i want to take starting point as given script

mu = 0; % mean (mu)
sig = 2; % standard deviation (sigma)
N = 1e5; % number of samples

% Sample from Gaussian distribution %

z = mu + sig*randn(1,N);

% Plot sample histogram, scaling vertical axis
%to ensure area under histogram is 1
dx = 0.5;
x = mu-5*sig:dx:mu+5*sig; % mean, and 5 standard
% deviations either side
H = hist(z,x);
area = sum(H*dx);
H = H/area;
bar(x,H)
xlim([-5*sig,5*sig])

% Overlay Gaussian density function
hold on
f = exp(-(x-mu).^2/(2*sig^2))/sqrt(2*pi*sig^2);
plot(x,f,’r’,’LineWidth’,3)
hold off

]]>
By: Ashwini https://www.gaussianwaves.com/2008/04/probability/#comment-27952 Thu, 11 Jun 2015 19:02:00 +0000 http://www.gaussianwaves.com/2008/04/probability/#comment-27952 Hello , your website is a great help for topic understanding and implementing in our project .
Sir can you plz give me the simplest PDF and CDF vs Capacity matlab code for mimo system without channel matrix ??
I mean i m using simulink platform and H matrix need not be in the code for the plot..

hoping for your fast reply at [email protected]

]]>
By: Mathuranathan https://www.gaussianwaves.com/2008/04/probability/#comment-27400 Mon, 02 Mar 2015 15:02:00 +0000 http://www.gaussianwaves.com/2008/04/probability/#comment-27400 In reply to anupama karad.

I am not sure about image processing. However, this link might help
http://www.mathworks.com/help/images/ref/imnoise.html

]]>
By: anupama karad https://www.gaussianwaves.com/2008/04/probability/#comment-27391 Sun, 01 Mar 2015 07:07:00 +0000 http://www.gaussianwaves.com/2008/04/probability/#comment-27391 how can we quantify(measure) gaussian white noise in image using matlab,(donot want to use PSNR)

]]>
By: Anonymous https://www.gaussianwaves.com/2008/04/probability/#comment-36793 Tue, 21 Oct 2008 04:00:00 +0000 http://www.gaussianwaves.com/2008/04/probability/#comment-36793 GREAT EFFORT!!! JAzak Allah kol khayr

]]>
By: Anonymous https://www.gaussianwaves.com/2008/04/probability/#comment-170 Tue, 21 Oct 2008 00:00:00 +0000 http://www.gaussianwaves.com/2008/04/probability/#comment-170 GREAT EFFORT!!! JAzak Allah kol khayr

]]>
By: Mathuranathan https://www.gaussianwaves.com/2008/04/probability/#comment-168 Thu, 24 Apr 2008 07:37:00 +0000 http://www.gaussianwaves.com/2008/04/probability/#comment-168 Ya I can deal with Random process in detail but I think divulging to finer details of Random process itself will need a separate blog.

]]>
By: Mitr https://www.gaussianwaves.com/2008/04/probability/#comment-166 Wed, 23 Apr 2008 09:38:00 +0000 http://www.gaussianwaves.com/2008/04/probability/#comment-166 It will be better to go in more details like stochastic process

]]>