フィルターのクリア

show the output of subplot as a full screen show

3 ビュー (過去 30 日間)
nadia naji
nadia naji 2021 年 4 月 24 日
回答済み: Star Strider 2021 年 4 月 24 日
Hello,
I need to show the subplot output as a full screen image but it shows small images in the output. my Matlab version is R2016a. do you have any sugestions for this? Thank you.

採用された回答

Star Strider
Star Strider 2021 年 4 月 24 日
Try something like this —
hf = figure;
subplot(2,1,1)
plot(1:100, randn(1,100))
grid
subplot(2,1,2)
plot(1:100, sin(2*pi*(0:99)/33))
grid
hf.Position = [0 0 [1 1/2]*2.7E+3];
.

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by