finding intersection points by plot
17 ビュー (過去 30 日間)
古いコメントを表示
Hi. i've plotted a set of data against each other. now i want to find its intersection point with the x and y axis from the plot.
matlab only allows me to see the data points on the plot not the intersections.
any help?
0 件のコメント
回答 (1 件)
Star Strider
2019 年 5 月 14 日
If you are doing a linear regression, try this:
p = polyfit(x,y,1);
YAxisIntercept = p(2)
XAxisIntercept = -p(2)/p(1)
This gets significantly more complicated with a higher-degree polynomial or a nonlinear model.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Surface and Mesh Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!