curve fitting in MATLAB by using curve fitting tool
    9 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    2NOR_Kh
 am 10 Okt. 2022
  
    
    
    
    
    Kommentiert: Walter Roberson
      
      
 am 11 Okt. 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.


0 Kommentare
Akzeptierte Antwort
  Matt J
      
      
 am 10 Okt. 2022
        
      Bearbeitet: Matt J
      
      
 am 10 Okt. 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 Kommentare
  Matt J
      
      
 am 11 Okt. 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.
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Get Started with Curve Fitting Toolbox finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


