another crazy plot layout with zoomed portions and arrows

5 vues (au cours des 30 derniers jours)
HC98
HC98 le 15 Juin 2023
Modifié(e) : Les Beckham le 15 Juin 2023
Hi, so I'm writing some lecture notes and want to show how to do this
For our purposes let's just suppose 'f(x) = exp(-x)'

Réponse acceptée

Les Beckham
Les Beckham le 15 Juin 2023
Modifié(e) : Les Beckham le 15 Juin 2023
Hopefully you can adapt this approach to your needs.
x = linspace(0, 10, 1000);
y = exp(-x);
plot(x, y)
grid on
ax = axes('Position', [0.3 0.6 0.1 0.2], 'Units', 'Normalized', 'Box', 'on', 'XGrid', 'on', 'YGrid', 'on');
idx = (x >= 1) & (x <= 2);
line(ax, x(idx), y(idx))
xlim([1 2])
% arrow ending coordinates were determined by trial and error since they are normalized
% to the entire figure rather than the axes
annotation('arrow', [0.3 0.25], [0.6 0.3])

Plus de réponses (0)

Catégories

En savoir plus sur Creating, Deleting, and Querying Graphics Objects dans Help Center et File Exchange

Produits


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by