Delete table from GUI app variable

5 views (last 30 days)
Federico F
Federico F on 17 Jul 2019
Commented: Jan on 19 Jul 2019
Hi all,
I have a GUI designed in Matlab called app. In app there is a table table that a certain point I want to delete to save memory, how can I do it? clear app.table does not work
Thanks

Answers (1)

Jan
Jan on 17 Jul 2019
Edited: Jan on 19 Jul 2019
Perhaps you mean:
delete(app.table)
  2 Comments
Jan
Jan on 19 Jul 2019
[MOVED from section for answers] Federico F wrote:
It returns
"Error using delete
Name must be a string scalar or character vector."
But then
delete('app.table')
Warning: File 'app.table' not found.
[Please post comments in the section for comments - Thanks.]
Jan
Jan on 19 Jul 2019
@Frederico F: If the solution is not trivial, please take the time to explain with more details, what you want to do. Why do you think you should save memory? What do you exactly want to delete? What does "does not work" mean explicitly? What does "In app there is a table table" mean? An uitable object? What is the class of this object:
class(app.table)

Sign in to comment.

Categories

Find more on Tables in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!