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
2020-9-29
0 个投票
4 个评论
Matteo Novello
2020-9-29
Ameer Hamza
2020-9-29
Can you show an example?
Matteo Novello
2020-9-29
Ameer Hamza
2020-9-30
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 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
