Plot roots of non-linear equation

1 次查看(过去 30 天)
Fatih Ay
Fatih Ay 2020-4-5
评论: Fatih Ay 2020-4-5
How can I show (in the graph) the roots of non-linear equation below,

回答(1 个)

Image Analyst
Image Analyst 2020-4-5
编辑:Image Analyst 2020-4-5
Did you try the plot() function?
x = linspace(-30, 40, 1000);
fx = (x .^ 2 ./ (x+1)) .^ 0.3333333;
plot(x, fx, 'b-', 'LineWidth', 2);
grid on;
xlabel('x', 'FontSize', 15);
ylabel('fx', 'FontSize', 15);
As you can see it hits 0 only at 0 and like Star says, there are other complex roots.
  1 个评论
Fatih Ay
Fatih Ay 2020-4-5
Thank you very much, that is what I want. I appreciate you very much.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by