How do you find the intersection points of two functions?

i have A=10+0.5*n;
P=8*exp(1.02*n) where n=1:110
i want to find the point when P>A ,numerically and graphically

답변 (1개)

Star Strider
Star Strider 2019년 11월 10일
It is straightforward to show that P>A for the entirety of ‘n’.
They do not ever intersect:
n=1:110;
A=10+0.5*n;
P=8*exp(1.02*n);
Out = P(P>A); % Desired Result
figure
plot(n, A, n, P)
grid
ylim([min(A) max(A)])
They would intersect at 0 if ‘n’ was allowed to have any negative values, and was continuoous.

카테고리

도움말 센터File Exchange에서 Axes Appearance에 대해 자세히 알아보기

태그

질문:

2019년 11월 10일

답변:

2019년 11월 10일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by