How do I position the legend window in a Bode plot with phase hidden?
Show older comments
I generated the following code to create a simple bode plot, and the legend position doesn't seem to be behaving properly. Am I missing something, or is this a bug?
P = bodeoptions; P.FreqUnits = 'Hz'; % Create plot with the options specified by P P.PhaseVisible = 'off';
x1=tf(1,[1/(10*2*pi) 1]); x2=tf(1,[1/(20*2*pi) 1]);
bodeplot(x1, x2, P) legend('tf 10hz', 'tf 20hz','Location', 'NorthEast')
Accepted Answer
More Answers (1)
Gordon Pellegrinetti
on 21 Jul 2014
0 votes
Categories
Find more on Legend in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!