extrapolate data to cross x axis
Show older comments
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.
Accepted Answer
More Answers (2)
Max Heimann
on 18 Jan 2022
Edited: Max Heimann
on 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
on 18 Jan 2022
0 votes
1 Comment
Star Strider
on 18 Jan 2022
As always, my pleasure!
Categories
Find more on Fit Postprocessing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!