Finding the intersection of a function with its derivative

2 次查看(过去 30 天)
I have this code:
x=sym('x'); f=2*sin(log(x)).^2; g=diff(f); h1=ezplot(f); set(h1,'Color','red') hold on ezplot(g) grid on
Now, how I can find the value of the points where they intersect?

采纳的回答

Wayne King
Wayne King 2013-12-15
编辑:Wayne King 2013-12-15
How about:
syms x
f=2*sin(log(x)).^2;
g=diff(f);
solve(f-g) % or solve(f==g)
  3 个评论
Sebastian Ciuban
Sebastian Ciuban 2013-12-15
That is the thing that I want to know :). The value of all points where those 2 curves intersect

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Symbolic Math Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by