How to save data in a GUI button callback?

조회 수: 1 (최근 30일)
Ibro Tutic
Ibro Tutic 2017년 6월 7일
편집: Jan 2017년 6월 8일
I have a function that I run for plotting certain data called englishplot whose output is a structure containing relevant data. I assign this structure to handles.data within the button callback. Now when I want to add something to handles.data, it is always overwritten with the new data, instead of having the new structure added to the old one.
In my button callback I have
handles.j=1;
handles.data=englishplot(handles.graphs,handles.test,handles.j,handles.DLG)
handles.j=handles.j+1;
Where handles.graphs is a user selected graph or graphs to graph, handles.test is the test number, handles.DLG is the raw data to pull from and handles.j is an index to keep track of any new plots that are added. This works for the first structure, and the output from handles.data = Plot1 (a 1x1 structure). Now what I want is that if the button is pressed again, handles.j = 2, and then handles.data would include Plot1 AND Plot2.
Any ideas?

채택된 답변

Jan
Jan 2017년 6월 7일
편집: Jan 2017년 6월 8일
Initialize handles.j = 0 in the OpeningFcn. Then:
handles.j = handles.j + 1;
handles.data(handles.j) = englishplot(handles.graphs,handles.test,handles.j,handles.DLG)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Specifying Target for Graphics Output에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by