Equations are 1) Sin^2(wt)/t 2) sin(at)sinh(at)/2(a^2) 3) ((e^-t)+(e^-3t))u(t)

 채택된 답변

Ameer Hamza
Ameer Hamza 2020년 4월 29일

0 개 추천

Try this
t = linspace(0, 10, 100);
w = 1;
a = 1;
y1 = sin(w*t)./t;
y2 = sin(a*t).*sinh(a*t)./(2*a^2);
y3 = (exp(-t)+exp(-3*t)).*heaviside(t);
subplot(3,1,1)
plot(t, y1)
subplot(3,1,2)
plot(t, y2)
subplot(3,1,3)
plot(t, y3)

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

질문:

2020년 4월 29일

답변:

2020년 4월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by