Plot roots of non-linear equation

1 view (last 30 days)
Fatih Ay
Fatih Ay on 5 Apr 2020
Commented: Fatih Ay on 5 Apr 2020
How can I show (in the graph) the roots of non-linear equation below,

Answers (1)

Image Analyst
Image Analyst on 5 Apr 2020
Edited: Image Analyst on 5 Apr 2020
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 Comment
Fatih Ay
Fatih Ay on 5 Apr 2020
Thank you very much, that is what I want. I appreciate you very much.

Sign in to comment.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!