To generate following sequence
이전 댓글 표시
To generate using stem function -
y(n) = 5 * e^cos(pi*n/3) * u(n-3)
답변 (1개)
Thiago Henrique Gomes Lobato
2019년 10월 20일
You can plot it actually pretty easily, just make sure to use your own u vector below :
n = 4:100;
u = ones(1,97);
y = 5 .* exp(cos(pi*n/3)) .* u(n-3);
stem(n,y)

카테고리
도움말 센터 및 File Exchange에서 Modeling에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!