Multiple charts in the same window

I have seen that there is a way to make multiple charts in the same figure. I don't mean using subplot.
The result is a basic and slightly overlapping graph at the top, slightly external and smaller than another graph.
Do you know what the command is?

답변 (1개)

Ameer Hamza
Ameer Hamza 2020년 9월 29일

0 개 추천

댓글 수: 4

Matteo Novello
Matteo Novello 2020년 9월 29일
Thank you.
But it wasn't quite what I was looking for. I had seen that there was indeed a command to do this. For example you created a 2D surface plot and then you could add another graph for example its 3D graph.
Ameer Hamza
Ameer Hamza 2020년 9월 29일
Can you show an example?
Matteo Novello
Matteo Novello 2020년 9월 29일
Where the squares are 2 different plot. I see a comand for do this but I lost it
What about something like this
f = figure();
ax = axes('Position', [0.1 0.1 0.75 0.75]);
plot(rand(1, 10));
ax2 = axes('Position', [0.65 0.7 0.3 0.25]);
plot(rand(1, 10));

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

카테고리

도움말 센터File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품

태그

질문:

2020년 9월 29일

댓글:

2020년 9월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by