How do I get a zoomed portion of a plot inside a plot, to enhance the visualization?

189 ビュー (過去 30 日間)
Suppose I have a plot, e.g. some function y(x) and I have plotted it. Now, if I wish to zoom a particular portion on the graph and show the zoomed portion inside the same plot (preferably by making a small box), is there any tool to do that with less computation (some GUI, etc.)?
  3 件のコメント
Abhinav Sinha
Abhinav Sinha 2018 年 3 月 18 日
No, I do not need a subplot. This needs to be done in the same plot. Something like this, which I have done by creating a box of some dimension and then placing it in a suitable position.
Yamina chbak
Yamina chbak 2021 年 9 月 11 日
Did you find how to do that ? because i need it too.

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

採用された回答

Ahmet Cecen
Ahmet Cecen 2018 年 3 月 18 日
編集済み: Ahmet Cecen 2018 年 3 月 18 日
I am giving you the framework that you can use to do this the way you want. Every component of what you asked is there, they are just either placed or formatted differently. Tweaking and formatting is up to you.
r1 = [1:100]'.*rand(100,1);
figure;
a1 = axes();
plot(a1,r1);
a2 = axes();
a2.Position = [0.3200 0.6600 0.2 0.2]; % xlocation, ylocation, xsize, ysize
plot(a2,r1(50:70)); axis tight
annotation('ellipse',[.2 .3 .2 .2])
annotation('arrow',[.1 .2],[.1 .2])
legend(a1,'u')

その他の回答 (1 件)

Junaid Qadir
Junaid Qadir 2019 年 3 月 7 日
How can I zoom the subplot within same plot?

カテゴリ

Help Center および File ExchangeTwo y-axis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by