setappdata, where to verify?
조회 수: 2(최근 30일)
표시 이전 댓글
I'm slowly progressing on my way to Matlab "nirvana"...
How would I go about checking whether an element has indeed been added to a figure object? Suppose I use this code in my script :
set(FigureH, 'Position', [1800 500 f_Largeur f_Hauteur]);
ax1 = gca;
setappdata(FigureH,'axImage', ax1);
breakpoint = 1;
Suppose I set a breakpoint right after setappdata and navigate to the Command Window and type :
>> Get(FigureH)
... to get all FigureH properties, I don't see the appdata I just created, that are supposed to be stored in the figure, according to the documentation? I was expecting, possibly, to see it in UserData[ ]?
댓글 수: 0
채택된 답변
Voss
2022년 2월 17일
Use
getappdata(FigureH)
to view/verify the application data associated with FigureH via setappdata().
댓글 수: 2
Voss
2022년 2월 17일
It is there, in a property called 'ApplicationData', which doesn't show up by default when you do get(FigureH).
f = figure();
setappdata(f,'test_app_data',1);
get(f) % no ApplicationData property listed
get(f,'ApplicationData') % but here it is, including 'test_app_data'
추가 답변(0개)
참고 항목
범주
Find more on Specifying Target for Graphics Output in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!