Interpolation in negative axis?
2 次查看(过去 30 天)
显示 更早的评论
I have fitted my data with a gaussion function. the curve is basically lying in first coordinate and not starting from zero. I want to calculate the value of x for y=0 (x would then definitely come in 2nd coordinate). How to find this value of x. In figure, the first fitted curve (not starting from zero)
fun1 = @(p,xdata) p(1).*(1-exp(-xdata./p(2)))+5000;
I want to a value of x for y=0 (when curve touches x axis). How to find it. Any lead will be appricated.

0 个评论
采纳的回答
Star Strider
2018-1-16
Once you have your fitted ‘p’ values, you can find the x value at y=0 with the fzero function.
Try this:
fun1 = @(p,xdata) p(1).*(1-exp(-xdata./p(2)))+5000;
x_intercept = fzero(@(xdata) fun1(p,xdata), -1);
2 个评论
Star Strider
2018-1-16
As always, my pleasure.
If my Answer helped you solve your problem, please Accept it!
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interpolation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!