Dear, could help me on probability density function of stochastic equation with multiplicative noise in Matlab. I mean how to code in Matlab the probability distribution of stochastic equation with multiplicative noise.
Hello Malik, your question is not clear to me. Uniform random variable has uniform distribution, and Gaussian/normal random variable has Gaussian distribution. Gaussian distribution of uniform random variable is not making any sense to me.
you are really helpful, thank you
Please make a video on Montecarlo simulation
Thank you sir
Thanks.
Dear, could help me on probability density function of stochastic equation with multiplicative noise in Matlab. I mean how to code in Matlab the probability distribution of stochastic equation with multiplicative noise.
thank you sooo much sir
Can you provide this code for Malaga distribution?
When will you upload the next video ?
In the next couple of days.
what if we want to plot cdf,pdf and Gaussian distribution of uniform random variables
Hello Malik, your question is not clear to me. Uniform random variable has uniform distribution, and Gaussian/normal random variable has Gaussian distribution. Gaussian distribution of uniform random variable is not making any sense to me.
N=1e6
x=3:0.01:7;
FONSTSIZE_LABEL=14;
FONTSIZE_LEGEND=12;
% Pdf dağılımı
f=@(x) 1/sqrt(2*pi)*exp(-x.^2/2);
%Cdf dağılımı
F=@(x) 1- qfunc(x);
X=randn(1,N);
figure(1);subplot(1,2,1);
histogram(X,200,'Normalization','pdf');
hold on;
%pdf grafiği
plot(x, f(x),'r-','Linewidth',3);
legend('simulated','Theoretical','Fontsize','Location','northeast');
xlabel('x','FontSize',FONTSIZE_LABEL);
ylabel('F_x(X)','FontSize',FONTSIZE_LABEL);
title('cdf of gaussian variable');