The following code for fitting a gaussian is returning the error "There should be atleast two data points". There are definitely more than two data points. Kindly help me resolve this issue.
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
K>> dbstop if error K>> a = load('calibrate100proc10.lvm'); K>> x = a(:,1); K>> y = a(:,2); K>> plot(x,y); K>> d = hist(y,1000); K>> d1 = d(:,1); K>> d2= d(:,2); K>> f = fit(d1,d2,'gauss1'); Error using fit>iFit (line 259) There should be at least two data points.
0 commentaires
Réponses (1)
Torsten
le 18 Mar 2015
According to the documentation for hist, I guess that d2 is an empty vector.
Best wishes
Torsten.
0 commentaires
Voir également
Catégories
En savoir plus sur Descriptive Statistics and Visualization dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!