Filter command in matlab with only input system
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Jorge Montane
le 24 Fév 2018
Réponse apportée : Birdman
le 26 Fév 2018

By using only this input, z(n); how could I calculate the output by using filter command in matlab.
0 commentaires
Réponse acceptée
Birdman
le 26 Fév 2018
Why don't you define this function with piecewise command very easily?
syms z(n)
z(n)=piecewise(n>=1 & n<=5,n,n<1 | n>5,0);
and plot it to see the results.
t=0:0.01:7;
plot(t,z(t))
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Matched Filter and Ambiguity Function 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!