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!