extrapolate data to cross x axis
Afficher commentaires plus anciens
I have this curve and need to extrapolate it so both ends cross x axis, I have used Vq = INTERP1(X,V,Xq,'linear",'extrap') and tried other 'method's but it did not look "good".
any suggestions how to do it nicely? thanks.
Réponse acceptée
Plus de réponses (2)
Max Heimann
le 18 Jan 2022
Modifié(e) : Max Heimann
le 18 Jan 2022
0 votes
In order for this question to be answered you should define what you mean by "nice". Unfortunately your code sample is not runable with the given workspace. But if it were it would still be unclear what would need to change for you to have an acceptable curve.
You could try polyfit and polyval to generate a polynomial which matches your data and then extrapolate by evaluating it outside of your datapoints. This works best if you have some idea how your curve should look like outside of your existing datapoints.
Asliddin Komilov
le 18 Jan 2022
0 votes
1 commentaire
Star Strider
le 18 Jan 2022
As always, my pleasure!
Catégories
En savoir plus sur Fit Postprocessing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!