how to plot a continuous signal
6 ビュー (過去 30 日間)
古いコメントを表示
i am unable to plot the following signal can anyone help me? x(t)=20t^2(1-t)^4cos(12*pi*t)
0 件のコメント
採用された回答
Star Strider
2017 年 1 月 23 日
Sounds like homework ...
x = @(t) 20*t.^2.*(1-t).^4.*cos(12*pi*t);
t = linspace(0, 1);
figure(1)
plot(t, x(t))
grid
9 件のコメント
Leane Armada
2020 年 10 月 22 日
hi. can you help me with this problem ?
sketch the continuous time signal
x(t) = u(t+1) - 2u(t-1) + u(t-3)
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!