フィルターのクリア

Change graph style and layout

1 回表示 (過去 30 日間)
SuzieChan
SuzieChan 2020 年 4 月 11 日
コメント済み: Image Analyst 2020 年 4 月 11 日
Hi,
How can I make my graphs look like this style?
What is the code for the font, axis and layout of these graphs in matlab?
I think font is Times New Roman.
Thank you.
  2 件のコメント
BN
BN 2020 年 4 月 11 日
編集済み: BN 2020 年 4 月 11 日
Yes I think it's Times New Roman too.
set(gca,'fontname','Times New Roman','FontSize',8) % Set current figure font to times new roman size 8
In the case of axis you can do that:
ylabel('something','FontSize',12)
xlabel('something','FontSize',12)
Here is what I knew, in this case.
Image Analyst
Image Analyst 2020 年 4 月 11 日
Behzad, if you put answers down in the Answers section, like Ameer did, you can get credit/reputation points for helping. Up here in the comments section is where people ask posters for clarification of questions, like asking them to attach data or whatever.

サインインしてコメントする。

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 4 月 11 日
編集済み: Ameer Hamza 2020 年 4 月 11 日
Some thing like this
fig = figure();
fig.Position(4) = fig.Position(4)/2;
ax(1) = subplot(1,2,1);
ax(1).FontName = 'Times';
xlabel('\theta')
ylabel('R')
ax(1) = subplot(1,2,2);
ax(1).FontName = 'Times';
xlabel('Chi (m)')
ylabel('Elevation (m)')
Use annotation(): https://www.mathworks.com/help/matlab/ref/annotation.html to add text boxes and arrows.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNetworks についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by