To generate following sequence

To generate using stem function -
y(n) = 5 * e^cos(pi*n/3) * u(n-3)

2 Commenti

What function is u?
unit step function

Accedi per commentare.

Risposte (1)

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)
Untitled.png

Categorie

Scopri di più su Modeling in Centro assistenza e File Exchange

Richiesto:

il 20 Ott 2019

Commentato:

il 22 Ott 2019

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by