How to predict using interpolation or polyfit
14 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mekala balaji
le 13 Sep 2017
Réponse apportée : Akira Agata
le 13 Sep 2017
Hi, I have data as below:
x y 1.2 2.3 4.8 2.7 5.8 3.5
and I want to predict for x is 2.7, what is y? Many thanks in advance,
1 commentaire
Réponse acceptée
Akira Agata
le 13 Sep 2017
...Or polyfit function, like:
xy = [1.2, 2.3;
4.8, 2.7;
5.8, 3.5];
p = polyfit(xy(:,1), xy(:,2), 2);
x = linspace(0,6);
y = polyval(p, x);
figure
plot(xy(:,1), xy(:,2),'ro');
hold on;
plot(x,y,'b:');
plot(2.7, polyval(p, 2.7), 'bo');
legend({'Data','polyfit','estimated value at x = 2.7'});
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Gaussian Process Regression 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!