transform cfit (fitted data) into a numeric data array
52 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
sermet OGUTCU
le 18 Fév 2021
Réponse apportée : Vinnie Pepi
le 18 Fév 2021
f=fit(x,y,'linearinterp');
I need to save f fitted numeric data from the original data into a different array such as;
fitted_data=f
How I can transform cfit type of fitted data to the numeric (double) fitted data?
0 commentaires
Réponse acceptée
Vinnie Pepi
le 18 Fév 2021
If I understand your question, it looks like you want to get the fitted data as an array of doubles.
According to this documentation:
You can supply the fit with a range of values that you are looking for like so:
xi = (2000:10:2050).';
fitted_data = f(xi)
Hope this helps.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Statistics and Machine Learning Toolbox 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!