How can I find the two intersection points of the x and y axis of two equations in Matlab?
2 次查看(过去 30 天)
显示 更早的评论
I need to find the two intersection points of the x,y axis of x^2 and log(x+1), I have tried it with the solve command and it does not work.
0 个评论
采纳的回答
Walter Roberson
2023-10-29
Example with deliberately different equations. You can study the techniques and appy them to your own code.
syms x y
eqn1 = y == 5*x^3;
eqn2 = y == log(x^2-2*x-1);
yintercept1 = solve(subs(eqn1, y, 0), 'returnconditions', true)
yintercept1.x
yintercept1.conditions
yintercept2 = solve(subs(eqn2, y, 0), 'returnconditions', true)
yintercept2.x
xintercept1 = solve(subs(eqn1, x, 0), 'returnconditions', true)
xintercept2 = solve(subs(eqn2, x, 0), 'returnconditions', true)
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Mathematics and Optimization 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!