Change pzplot marker size
Show older comments
Hello,
How do i change the marker size for the pzplot ?
Accepted Answer
More Answers (2)
Stephen Wilkerson
on 12 Jun 2023
0 votes
% Let's change the symbol size
% Why Mathworks makes the symbols unseeable is beyond me
% Why mathworks makes this harder then it should be is beyond me
% Here is a solution that works, unlike the above!
sys1 = tf(4,[1 0 4]);
h = pzplot(sys1)
grid on
a = findobj(gca,'type','line');
for i = 1:length(a)
set(a(i),'markersize',20); %change marker size
set(a(i), 'linewidth',2); %change linewidth
set(a(i),'Color','r')
end
You can now do this directly from the pzplot command starting in R2026a.
pzplot(rss(3),MarkerSize=10)
Categories
Find more on Graphics Performance in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!