How to write plotting equation in matlab help please

1 view (last 30 days)
y(x) = 2e -0.2x for the range 0 <= x <= 10 with intervals of 0.1.
i am new to matlab and it would be a great lesson and learning experience to know, thank you

Accepted Answer

madhan ravi
madhan ravi on 3 May 2019
x=start_value:0.1:endvalue; % fillup the missing values as is you homework , I suggest you to MATLAB onramp course
y= 2*exp(...);
plot(...)

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!