problem with the previous data in matlab gui
1 view (last 30 days)
Show older comments
I am working on matlab gui. how to delete previous data that is stored in the gui variable? like clear in command window, is there anything like that in gui
0 Comments
Answers (1)
Jan
on 31 Oct 2017
What is "the gui variable"? Do you mean the handles struct? Then:
handles.yourData = [];
guidata(hObject, handles);
Or
handles = rmfield(handles, 'yourData');
guidata(hObject, handles);
Or perhaps some persistent variables?
For a more precise answer, explain, how you store the variables.
4 Comments
Franck paulin Ludovig pehn Mayo
on 18 Oct 2021
@Jan i did 3 days ago but so far no answer.Below is the link of my question.
Thank you i look forward to hearing from you soon.
Jan
on 19 Oct 2021
@Franck paulin Ludovig pehn Mayo: This is a link to edit the new question. The working link:
See Also
Categories
Find more on Develop Apps Using App Designer 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!