Hello to all, can you help me to plot y= (x+2)^(x+2)

2 views (last 30 days)
y= (x+2)^(x+2)

Accepted Answer

KSSV
KSSV on 10 Apr 2022
x = linspace(0,1) ;
y = (x+2).^(x+2) ;
plot(x,y)

More Answers (0)

Categories

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

Tags

Community Treasure Hunt

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

Start Hunting!