How to write a code for a distribution?

3 visualizzazioni (ultimi 30 giorni)
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))];

Risposta accettata

David Hill
David Hill il 5 Feb 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 Commento
Maria Amr
Maria Amr il 5 Feb 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'.

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by