Effacer les filtres
Effacer les filtres

??? Undefined function or method 'gauss' for input arguments of type 'double'.

11 vues (au cours des 30 derniers jours)
Nikola
Nikola le 23 Juil 2014
Commenté : Star Strider le 23 Juil 2014
gauss(x,mu,s) x double mu 4.5636 s 0.5969
gauss=gauss(x,mu,s) ??? Undefined function or method 'gauss' for input arguments of type 'double'. how to fix this problem? o wanna plot distribution of variable "x"

Réponses (4)

Wayne King
Wayne King le 23 Juil 2014
Modifié(e) : Wayne King le 23 Juil 2014
gauss() is not a MathWorks' function. Have you downloaded this function from somewhere?
If so, you need to add the folder where you have placed the function on the MATLAB path.
Use addpath() or
>>pathtool
to do that.
If you have the Statistics Toolbox, you can simply use normpdf() if you want to obtain a Gaussian PDF.
x = 1:.01:7;
mu = 4.5636;
sd = 0.5969;
y = normpdf(x,mu,sd);
plot(x,y)
Or tell us what you think gauss() is going to do?

Nikola
Nikola le 23 Juil 2014
I made X as 275x1 double, actually its vector with: 170 fives, 90 fours and 15 threes, and I wanna make normal ( gauss) distirbution. Im newbie to matlab... I already did this problem in excell but I have problem in matlab.

Wayne King
Wayne King le 23 Juil 2014
Modifié(e) : Wayne King le 23 Juil 2014
I'll leave aside whether it is prudent to fit a normal distribution to these data.
Do you have the Statistics Toolbox installed?
If you enter
>>ver
Do you see the Statistics Toolbox listed?
If so, you can do this with your data
x = [5*ones(170,1); 4*ones(90,1); 3*ones(15,1)];
[muhat,sigmahat] = normfit(x);
You'll see those are equal to what you wrote in your post.
The above gives you the estimate mean (muhat) for the fitted normal and the estimated standard deviation.
You can obtain the PDF with:
t = 2:.01:7;
y = normpdf(t,muhat,sigmahat);
plot(t,y)
Alternatively, you can just use histfit()
histfit(x,20,'normal')

Nikola
Nikola le 23 Juil 2014
Statistics Toolbox Version 7.5
histfit function gives me distribution that is far differnet than one made in excell.
but thank you very much at least i learned new way how to create variable with matrices "ones"
i used to create three vectors y1 y2 y3, one with 170 fives, one with 90 fours and one with 15 threes and that i create variable x =[y1 y2 y3]
your way looks better
  1 commentaire
Wayne King
Wayne King le 23 Juil 2014
histfit() is just scaling the PDF for plotting otherwise you would not see with your data. Look at the output of
[muhat,sigmahat] = normfit(x);
It gives you exactly the mean and standard deviation you included with your original post.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Particle & Nuclear Physics dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by