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

16 次查看(过去 30 天)
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

更多回答(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