How can i create these three images in one figure?

4 ビュー (過去 30 日間)
Stefan Alexandru
Stefan Alexandru 2021 年 4 月 27 日
コメント済み: Stefan Alexandru 2021 年 4 月 27 日
How can i create these three images in one figure ?
  2 件のコメント
Scott MacKenzie
Scott MacKenzie 2021 年 4 月 27 日
Use subplot (or tiledlayout since R2019b) to combine multiple plots into a single figure.
Stefan Alexandru
Stefan Alexandru 2021 年 4 月 27 日
thank you!

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

回答 (1 件)

Chad Greene
Chad Greene 2021 年 4 月 27 日
If you're question is about how to make subplots, here's how.
figure
subplot(3,1,1)
plot(sind(1:1e4))
subplot(3,1,2)
plot(rand(1000,1))
subplot(3,1,3)
plot(sind(1:1e4).*cosd(3*(1:1e4)))
  1 件のコメント
Stefan Alexandru
Stefan Alexandru 2021 年 4 月 27 日
It was very helpful, thank you!

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

カテゴリ

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