Effacer les filtres
Effacer les filtres

To generate following sequence

2 vues (au cours des 30 derniers jours)
Anmol Chauhan
Anmol Chauhan le 20 Oct 2019
Commenté : Anmol Chauhan le 22 Oct 2019
To generate using stem function -
y(n) = 5 * e^cos(pi*n/3) * u(n-3)
  2 commentaires
Image Analyst
Image Analyst le 20 Oct 2019
What function is u?
Anmol Chauhan
Anmol Chauhan le 22 Oct 2019
unit step function

Connectez-vous pour commenter.

Réponses (1)

Thiago Henrique Gomes Lobato
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

Catégories

En savoir plus sur Stem Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by