Effacer les filtres
Effacer les filtres

How to write a code for a distribution?

5 vues (au cours des 30 derniers jours)
Maria Amr
Maria Amr le 4 Fév 2021
Commenté : Maria Amr le 5 Fév 2021
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))];

Réponse acceptée

David Hill
David Hill le 5 Fév 2021
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));
  1 commentaire
Maria Amr
Maria Amr le 5 Fév 2021
David Hill Thank you so much1
I truly appreciated if you help me how to fit a curve on it? I I could n't do this with 'makedist', 'fitdist' or distributionfitter'.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by