How to respond to update of axis data?

2 visualizaciones (últimos 30 días)
bethel o
bethel o el 6 de Oct. de 2022
Comentada: bethel o el 7 de Oct. de 2022
I need to set a callback for when data in axis is updated. Is there a way to do this? i.e is their a way to be notified when a figure/axis/line data changes.
Thanks

Respuesta aceptada

Eric Delgado
Eric Delgado el 6 de Oct. de 2022
Editada: Eric Delgado el 6 de Oct. de 2022
Hey @bethel o, yeah, it's possible. "YData" is not a property of figure or axes, ok?
fig = figure;
ax1 = axes(fig);
h = plot(ax1, randn(1001,1));
addlistener(h, 'YData', 'PostSet', @(~,~)disp("YData changed!"));
% Changing data...
h.YData(1) = 2*h.YData(1);
% Answer:
% "YData changed!"
  1 comentario
bethel o
bethel o el 7 de Oct. de 2022
How do you acquired this kind of Jedi skills?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Graphics Object Properties en Help Center y File Exchange.

Productos


Versión

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by