How to write a code for a distribution?
5 次查看(过去 30 天)
显示 更早的评论
Hello every one,
I would really appreciate if anyone can help me about a code as I am really new in MATLAB. I just want to write a code based on the equation that is a distribution. Thank you!
%This is the equation:
% g(r)=β/(2αγ(1/β)) e^(-((|r-μ|)/α)^β ) [1+erf(k((r-μ)/α))]
% the code is below but there is an error: Error using exp , Not enough input arguments
mu=mean(r);
alfa=input('alfa is considered as:')
beta=input('beta is considered as:')
K=input('k is considered as:')
g(r)=(beta/2.*alfa.*gamma(1/beta)).*exp-(abs (r-mu)./alfa).^beta.*[1-erf(K.*(r-mu./alfa))];
0 个评论
采纳的回答
David Hill
2021-2-5
mu=mean(r);
alfa=input('alfa is considered as:')
beta=input('beta is considered as:')
K=input('k is considered as:')
g(r)=beta/(2*alfa*gamma(1/beta)).*exp(-(abs(r-mu)/alfa).^beta).*(1+erf(K*(r-mu)/alfa));
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!