Info

This question is closed. Reopen it to edit or answer.

How I can Plots this function

1 view (last 30 days)
Mohamed  Hussein
Mohamed Hussein on 16 Feb 2019
Closed: MATLAB Answer Bot on 20 Aug 2021
how can write the code of this function

Answers (2)

Yasasvi Harish kumar
Yasasvi Harish kumar on 16 Feb 2019
Hey,
This should help you.
function x = question(t)
if t >=0
x = 3*exp(-2*t);
else
x = 0;
end
end
Regards

Star Strider
Star Strider on 16 Feb 2019
Another approach:
x = @(t) 3*exp(-2*t) .* (t >= 0);
t = linspace(-10,10);
figure
plot(t, x(t))

Community Treasure Hunt

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

Start Hunting!