curve fitting in MATLAB by using curve fitting tool

6 vues (au cours des 30 derniers jours)
2NOR_Kh
2NOR_Kh le 10 Oct 2022
Commenté : Walter Roberson le 11 Oct 2022
I have a data that should fit a gaussian into it and then finding the center frequency and sigma, I use curve fitting tool in the matlab for this goal. Now in the curve fitting tool there is an option "center and scale", highlighted in yellow in the image below. If I chose this option the results will bedifferent than not chosong this option. I dont know what is this "center and scale" and which one the results are the ones I want.

Réponse acceptée

Matt J
Matt J le 10 Oct 2022
Modifié(e) : Matt J le 10 Oct 2022
The centering/scaling means the xdata,ydata will be pre-normalized before any fitting is done. The doc is not specific about what the normalization is, but likely it is something like
xdata=(xdata-mean(xdata))/std(xdata)
ydata=(ydata-mean(ydata))/std(ydata)
As for which one you want, you want the one that gives the better fit. Look at the results and take the one that is better.
  3 commentaires
Matt J
Matt J le 11 Oct 2022
Thank you so much,
You are quite welcome, but please Accept-click the answer to indicate that your question has been addressed.
I should fit Burr distiribution to another data but matlab curve fitting does not have this distribution, in this curver fitting tool do you know that I can add a distribution or not?
You can define custom curve models:
When you do, however, it is usually important to supply a good initial guess of the parameters.
Walter Roberson
Walter Roberson le 11 Oct 2022
Center and Scale affects X but not Y.

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by