MATLAB: Change pzplot marker size

pzplot

Hello,
How do i change the marker size for the pzplot ?

Best Answer

h=tf(1,[1 1 5])
pzplot(h)
findobj(gca,'type','line')
set(a(2),'markersize',7)
set(a(3),'markersize',7)