How to plot magnitude and phase spectrum of the function
Afficher commentaires plus anciens
Hye i really confuse on how much method to write the code to plot magnitude and phase. Below is my function.
X(z)=z / (z-1)^2
Any idea how to start beside plot?
Réponse acceptée
Plus de réponses (2)
Deepak Gupta
le 16 Juin 2020
Star Strider has given the answer but just FYI:
X = tf([1 0], [1 -2 1]);
bode(X), grid
This will work too.
You can know more about bode plots here:
3 commentaires
MUHAMMAD RAHMAT ASMAT
le 16 Juin 2020
Star Strider
le 16 Juin 2020
Note that this creates a s-domain function, not a z-domain function.
Deepak Gupta
le 16 Juin 2020
It creates z-tranfer too. If we give sampling period 0.1s then you will get same result. i.e. tf([1 0], [1 -2 1], 0.1)
Usman
le 4 Déc 2023
0 votes
Validate magnitude and phase spectrum for x(t) = e−atu(t) for a > 1 and 0 < a < 1. write code for matlab
Catégories
En savoir plus sur Pole and Zero Locations dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
