Cubic Spline Fit-Just confirm the code
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I have two vectors, X, and Y (of same size).
Now, I am interested in cubic spline fit of the data points (Y) at certain values (let's call this vector as "x") by the code:
-------------------------------
x = 1:1:125;
y = interp1(X,Y, x,'spline')
plot(x,y,'--r')
-------------------------------
PLEASE CONFIRM:
The "plot (x,y,'--r')" command will give the cubic spline fit for data points (represented in Y), right?
0 commentaires
Réponse acceptée
John Petersen
le 11 Juil 2012
right. You can verify this by
plot(X,Y,,'.',x,y);legend('Samples','Spline')
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Splines 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!