To generate following sequence
4 views (last 30 days)
Show older comments
To generate using stem function -
y(n) = 5 * e^cos(pi*n/3) * u(n-3)
2 Comments
Answers (1)
Thiago Henrique Gomes Lobato
on 20 Oct 2019
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)
0 Comments
See Also
Categories
Find more on Elementary Math in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!