Default Plot Graphics Settings for Step Plots?
19 ビュー (過去 30 日間)
古いコメントを表示
I'm trying to set my default settings for the stepplot(), bodeplot(), etc plots to match my settings for other plots. I can't seem to find a setting to programatically change the text interpreter for the title and axis labels. My default settings for the axis ticks work just fine. Here is what I'm doing in my startup.m:
set(groot, 'DefaultTextInterpreter', 'latex');
set(groot, 'DefaultLegendInterpreter', 'latex');
set(groot, 'DefaultAxesTickLabelInterpreter', 'latex');
Are there similar settings for response plots?
Thanks,
Alex
0 件のコメント
採用された回答
Star Strider
2021 年 4 月 23 日
The options are limited with the Control System Toolbox functions. The easiest ones are in bodeoptions and more geneerally in setoptions. Others require a fair amount of spelunking through the plot properties to change, so I usually get the outputs of bode and others, and plot them using routine plot functions.
2 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!