How to respond to update of axis data?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
bethel o
am 6 Okt. 2022
Kommentiert: bethel o
am 7 Okt. 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
0 Kommentare
Akzeptierte Antwort
Eric Delgado
am 6 Okt. 2022
Bearbeitet: Eric Delgado
am 6 Okt. 2022
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!"
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Specifying Target for Graphics Output finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!