フィルターのクリア

How to draw multiple plots in one picture?

2 ビュー (過去 30 日間)
Steven KIM
Steven KIM 2021 年 11 月 23 日
コメント済み: Steven KIM 2021 年 11 月 23 日
Hello, everyone :)
I want to draw a separate graph on one picture as shown in the picture below, what should I do?
I think we can use the code called "subplot". Is it possible?
I attached the .mat file below.
Number 1 vertically is the x-axis time, and number 2 vertically is the value.
The vertical odd value is time.
Help me, please.

採用された回答

KSSV
KSSV 2021 年 11 月 23 日
subplot(411)
plot(rand(100,1))
subplot(412)
plot(rand(100,1))
subplot(413)
plot(rand(100,1))
subplot(414)
plot(rand(100,1))
  1 件のコメント
Steven KIM
Steven KIM 2021 年 11 月 23 日
oh,,Thank you so much!!
I got it :)

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

その他の回答 (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