필터 지우기
필터 지우기

How do I mark all critical points on a graph of a function?

조회 수: 2 (최근 30일)
Lincoln
Lincoln 2024년 2월 18일
댓글: Matt J 2024년 2월 18일
I'm trying to plot the function f=(sin(x)+(1/3)*(cos(5*x))) across 0<=x<=2pi, find all roots of the derivative and then use them to mark all the critical points on the graph. The following code is as far as I've got:
syms x;
f=(sin(x)+(1/3)*(cos(5*x)));
v=diff(f)
fplot(f,[0 10])
hold on
fplot(v,[0 10])
roots(v)
I've tried the solve command too but cannot find a way to list all roots, plug the roots into the original function, then mark the resultant critical points on the graph.
Any advice appreciated, thanks.

채택된 답변

Matt J
Matt J 2024년 2월 18일
편집: Matt J 2024년 2월 18일
syms x;
f=(sin(x)+(1/3)*(cos(5*x)));
v=matlabFunction( diff(f) );
f=matlabFunction(f);
x=linspace(0,2*pi,1e5);
loc=find(gradient(sign(v(x)))~=0);
xcrit=mean(reshape(x(loc),2,[])); %critical point x-coordinates
fplot(f,[0 2*pi])
hold on
plot(xcrit,f(xcrit),'rx')
hold off;
legend('f(x)', 'crit points','Location','NE'); axis padded
  댓글 수: 2
Lincoln
Lincoln 2024년 2월 18일
Wow thanks! Is there a way I can find the roots of a derivative function and store them as an array?
Matt J
Matt J 2024년 2월 18일
xcrit is that array.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by