Bode Plots - Changing Line Styles
17 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
N/A
il 13 Mar 2015
Risposto: Giovanni Pacheco
il 28 Ott 2017
I created 3 bode magnitude plots with bodemag() and hold on, and I wanted to have it plot the three lines as three different black line styles (-, --, -. for example). I tried
LineStyle = '-'
LineStyle = '--'
LineStyle = '-.'
After each bodemag command, but I get three solid black lines. I know this is easier to do using simple plot(), but I'm not sure how to force this on the bode commands.
Thanks for any help!!
0 Commenti
Risposta accettata
Sebastian Castro
il 13 Mar 2015
You should use the line style in the bode (or bodemag) function itself, as follows:
>> sys1 = rss(2);
>> bodemag(sys1,'b-',2*sys1,'r--',0.5*sys1,'g-.');
- Sebastian
0 Commenti
Più risposte (1)
Giovanni Pacheco
il 28 Ott 2017
How do you do the same thing but instead of seperate systems, using a system with a for loop so in this case sys(i)?
0 Commenti
Vedere anche
Categorie
Scopri di più su Response Computation and Visualization in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!