how does zoomplot work?

3 visualizaciones (últimos 30 días)
arian hoseini
arian hoseini el 21 de En. de 2023
Respondida: Sulaymon Eshkabilov el 21 de En. de 2023
i need zoomplot but i dont know how to work with it?
allows me to zoom in on specific region in a line plot.
clc
clear all
E=0.001:0.01:10
for i=1:1000
G(i)=8.43*exp(-0.914*E(i));
end
plot(E,G);
[~, z] = zoomPlot((1:10).', G, [8 9], [0.2 0.5 0.4 0.4]);

Respuesta aceptada

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 21 de En. de 2023
1st of all zoomPlot() is a 3rd party function and is not part of MATLAB 2022b package or its toolboxes. Therefore, to see what can be done with it and how to use, it is worth viewing the content of this function. That can be achieved by:
edit zoomPlot % from command window
%% OR
open('zoomPlot.m') % from an M-file or MLX-file editor
edit 'zoomPlot.m' % from an M-file or MLX-file editor
If you want to use zoom option programmatically, there is a MATLAB fucntion to get it - zoom. See this DOC.

Más respuestas (0)

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by