错误和plotting my function

1 view (last 30 days)
Ethan Bales
Ethan Bales on 18 Sep 2021
Commented: Star Strider on 18 Sep 2021
Having issues getting my nonlinear function to plot.
f = @(x) 2.^x-5*x+2;%Given Function
xaxis = [0:0.5:2];%x-axis
plot(xaxis,f)%plotting function //DOESN'T WORK
2 Comments
Ethan Bales
Ethan Bales on 18 Sep 2021
yeah sorry about that. This is my first time using a forum like this and I'm still relatively new to coding. Thanks for insight!

Sign in to comment.

Accepted Answer

Star Strider
Star Strider on 18 Sep 2021
It works if you give ‘f’ a vector to work with
f = @(x) 2.^x-5*x+2;%Given Function
xaxis = [0:0.5:2];%x-axis
plot(xaxis,f(xaxis))%plotting function //DOESN'T WORK —> YEs, IT DOES!
Experiment to get different results.
.
2 Comments
Star Strider
Star Strider on 18 Sep 2021
My pleasure!
.

Sign in to comment.

More Answers (0)

Tags

下载188bet金宝搏


Release

R2021a

Community Treasure Hunt

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

Start Hunting!