MATLAB: Hi,i want to write matlab code for the given eq. plese help me

MATLAB

INt=eye(100,1);
mean=0;
sigma_2=1/100;
r1=1/(sqrt(2*pi*sigma_2));
zgk=r1*exp(-INt.^2/(2*sigma_2));

Best Answer

Here is the definition of the complex normal distribution:
https://en.wikipedia.org/wiki/Complex_normal_distribution
You used the standard real normal distribution in your code.
Best wishes
Torsten.