Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How I can Plots this function

6 Ansichten (letzte 30 Tage)
Mohamed  Hussein
Mohamed Hussein am 16 Feb. 2019
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
how can write the code of this function

Antworten (2)

Yasasvi Harish kumar
Yasasvi Harish kumar am 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 am 16 Feb. 2019
Another approach:
x = @(t) 3*exp(-2*t) .* (t >= 0);
t = linspace(-10,10);
figure
plot(t, x(t))

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by