how to plot a continuous signal
21 次查看(过去 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 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Multirate Signal Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!