How to draw two plots in one figure?

조회 수: 2 (최근 30일)
Nazila Pourhajy
Nazila Pourhajy 2022년 5월 31일
답변: Abhijit Nayak 2022년 5월 31일
Hi everyone.
I have two plots like this:
I want to have two plots in one figure like this in matlab. But I dont know what to do. please help me Thanks alot..
When I use this commands:
plot(x,y1);
hold on;
plot(x,y2);
hold off;
The result is as follow:
Becaues the values of y in two plots are different.

채택된 답변

Simon Chan
Simon Chan 2022년 5월 31일
Use function yyaxis
  댓글 수: 1
Nazila Pourhajy
Nazila Pourhajy 2022년 5월 31일
Thanks alot my friend.My problem was solved.

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

추가 답변 (1개)

Abhijit Nayak
Abhijit Nayak 2022년 5월 31일
From my understanding, you are looking for a way to have two plots in one figure with a common x-axis. You can use “yyaxis” function for such scenario.
For further reference, you can refer to the following MATLAB documentation link- .

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by