Adding a plot to existing plot.

78 ビュー (過去 30 日間)
Lizan
Lizan 2014 年 10 月 3 日
コメント済み: BHARATHI 2022 年 8 月 1 日
I have a base plot in which I would like to add a smaller version of a second plot/figure ontop of the base plot at a certain location.
The second plot (or figure) is already saved as a .fig file. How do I import the .fig file and its data and plot it as is but smaller (so it fits inside the base plot without hiding base plot data) onto the base plot?
  1 件のコメント
BHARATHI
BHARATHI 2022 年 8 月 1 日
Add the title "Sample Mass" to the existing plot

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

採用された回答

Chad Greene
Chad Greene 2014 年 10 月 4 日
Hi Lizan,
This could be a two-parter. First, load the figure, get its children, then get the x and y data of its children. Second, create a second set of axes and plot. Here is an example of getting children of current axes and plotting the data on a smaller inset axis:
plot(1:5,11:15,'rx','markersize',12);
hold on
plot(1.5:4.5,12:15,'bo','markersize',12);
ch = get(gca,'children');
x1 = get(ch(1),'xdata');
y1 = get(ch(1),'ydata');
x2 = get(ch(2),'xdata');
y2 = get(ch(2),'ydata');
axes('pos',[.6 .2 .25 .25])
plot(x1,y1,'rp-')
hold on
plot(x2,y2,'bs-')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAxis Labels についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by