problem with the previous data in matlab gui
Mostrar comentarios más antiguos
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
Respuestas (1)
Jan
el 31 de Oct. de 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 comentarios
Franck paulin Ludovig pehn Mayo
el 17 de Oct. de 2021
hello @Jan
I have a little problem. I was able to code a "Next button" using app designer that have as aim to draw lines. I had the data coming from excel. I am able to draw each line by clicking on the next button. The only problem is that the previous data/line is not deleted. So instead of having one line, i will have 2 or more depending on how many times i click on the next button.
any function hat could be helpful?
Jan
el 17 de Oct. de 2021
Please ask a new question by creating a new question. Then answering is easier than if the question is hidden in a comment of an answer of another question.
Franck paulin Ludovig pehn Mayo
el 18 de Oct. de 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
el 19 de Oct. de 2021
@Franck paulin Ludovig pehn Mayo: This is a link to edit the new question. The working link:
Categorías
Más información sobre Software Development Tools en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!