Simple question about curve fitting
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
aurc89
le 4 Avr 2015
Réponse apportée : Geoff Hayes
le 4 Avr 2015
Hi everyone! I have a question about fitting a curve: I have two vectors x and y of same length and the curve y(x). I want to fit this curve with a gaussian and I use the command
fit(x,y,'gauss2')
How can I fit my curve with this function but only between two points (x1,y1) and (x2,y2), where x1,x2 are two elements of vector x and y1,y2 the corresponding values of vector y? thank you in advance
0 commentaires
Réponse acceptée
Geoff Hayes
le 4 Avr 2015
aurc89 - find the indices of x1 and x2 within your x vector and then fit the curve against x and y using these indices. For example, if idx1 and idx2 are the indices of x1 and x2 such that x(idx1)==x1 and x(idx2)==x2 then fit the curve between these two points as
fit(x(idx1:idx2),y(idx1:idx2),'gauss2')
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Linear and Nonlinear Regression dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!