Effacer les filtres
Effacer les filtres

curve start and finish at [0 0] [0 365] respectively?

1 vue (au cours des 30 derniers jours)
Davide Cerra
Davide Cerra le 10 Déc 2018
Réponse apportée : KSSV le 10 Déc 2018
how can i impose the fitting curve to start from [0 0 ] and finish in [0 365] ? possibly using curve fitting toolbox?
  1 commentaire
Philip G
Philip G le 10 Déc 2018
There are multiple ways to do this:
Trim your data before ... e.g.
x_new = x(x>=0 && x<=365);
same for Y of course
Trim your data in the curve fitting app.
e.g. under tools - exclude outliers
or in the fit options you can specify a range
Fit manually

Connectez-vous pour commenter.

Réponses (1)

KSSV
KSSV le 10 Déc 2018
Let (x,y) be your data.
idx = y >= 0 & y <= 360 ;
x = x(idx) ; y = y(idx) ;

Catégories

En savoir plus sur Fit Postprocessing 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!

Translated by