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!