Delete table from GUI app variable

조회 수: 3 (최근 30일)
Federico F
Federico F 2019년 7월 17일
댓글: Jan 2019년 7월 19일
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

답변 (1개)

Jan
Jan 2019년 7월 17일
편집: Jan 2019년 7월 19일
Perhaps you mean:
delete(app.table)
  댓글 수: 2
Jan
Jan 2019년 7월 19일
[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 2019년 7월 19일
@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)

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Tables에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by