Can you provide this code for Malaga distribution?
@tawfiqullahayoubi81102 жыл бұрын
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.
@fatimaawan50613 жыл бұрын
thank you sooo much sir
@jaffarlone83783 жыл бұрын
When will you upload the next video ?
@bitsonair48203 жыл бұрын
In the next couple of days.
@malikinam82243 жыл бұрын
what if we want to plot cdf,pdf and Gaussian distribution of uniform random variables
@bitsonair48203 жыл бұрын
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.
@furkantopbasoglu60142 жыл бұрын
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');