フィルターのクリア

Add title and axis to subplot

2 ビュー (過去 30 日間)
Yung Xi
Yung Xi 2019 年 10 月 24 日
編集済み: Yung Xi 2019 年 10 月 24 日
Hello,
I have made a subplot (3 row, 1 column) using this code for x between 1 and 50
A = (x);
subplot(3,1,1)
fplot(A,[1 50])
B = (x);
subplot(3,1,2)
fplot(B,[1 50])
C = (x);
subplot(3,1,3)
fplot(C,[1 50])
How do I also add a title f
  2 件のコメント
Adam
Adam 2019 年 10 月 24 日
doc title
adds titles to plots, surprisingly enough.
To change linie colour, keep hold of the return argument from the call to fplot and use that. It has a 'Color' property.
dpb
dpb 2019 年 10 月 24 日
Same as if you only had one plot for each subplot...just follow the fplot call with the additional calls to customize like title, legend, etc. fplot like plot also accepts a 'linespec' triplet to set color or line style.
See the doc and examples for each...

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

回答 (1 件)

Kagan Eröz
Kagan Eröz 2019 年 10 月 24 日
A = @(x) sin(x);
s(1) = subplot(3,1,1)
fplot(A,[1 50],'g')
B = @(x) cos(x);
s(2) = subplot(3,1,2)
fplot(B,[1 50],'m')
C = @(x) tan(x);
s(3) = subplot(3,1,3)
fplot(C,[1 50])
Titles = {'Top Plot1','Top Plot2','Top Plot3'};
for i=1:max(size(Titles))
title(s(i),Titles(1));
end

カテゴリ

Help Center および File ExchangeLabels and Annotations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by