Clear Filters
Clear Filters

How to plot the function f(x)=x^3 - 4x^2 +1 for x∈[0,25]

18 views (last 30 days)
x= 0:0.01:25. For y=x^3 - 4x^2 +1 your plot command will be variant of plot(x,y).

Accepted Answer

pfb
pfb on 14 Apr 2015
You almost got it. Since x is a vector, you should use elementwise operators. not x^2 (what's the square of a vector?) but x.^2.
  1 Comment
pfb
pfb on 14 Apr 2015
Edited: pfb on 14 Apr 2015
also, you should write the multiplication operator (*) explicitly
x= 0:0.01:25
y=x.^3 - 4*x.^2 +1;
plot(x,y);

Sign in to comment.

More Answers (0)

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!