Implement multiples plots [figures()] into one figure()

조회 수: 3 (최근 30일)
Luiz Carlos
Luiz Carlos 2023년 3월 21일
답변: Piyush 2023년 3월 23일
I made several plots and saved them using figure(). I have many plots, and I wanted to merge them all into one to avoid opening too many windows. How to implement to open all in a single window?
  댓글 수: 1
Rik
Rik 2023년 3월 22일
The tags already show you are aware of the solution: subplot.
One semantic note: you can't save plots with the figure function, nor do figures contain plots. Figures contain axes, which can contain plots. You can put multiple axes in one figure, which is what the subplot function helps you to do.

댓글을 달려면 로그인하십시오.

채택된 답변

Piyush
Piyush 2023년 3월 23일
You can do it using subplots function. Link for the function is given below:
OR
You can also use “hold on” function. Checkout the below link for the same:
1

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Subplots에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by