was trying plot the pole zero plot of a transfer function.And used the code
H=pzplot(t1) for the same and got the output like Figure 1
But I wanted an answer like Figure 2 ,with names and different colours for poles and zeros
What should I do?
These are the Filter coefficients
b = [1,0.618,1] %numerator coefficients
a = [1,0,0] % denominator coefficients
b = b/sum(b) % normalization
figure
t1 = tf(b,a,(1/fs))
Thank You