フィルターのクリア

How to Delete Arrays?

42 ビュー (過去 30 日間)
Jay
Jay 2019 年 6 月 29 日
コメント済み: Steven Lord 2019 年 6 月 29 日
How does one delete arrays (completely) once they have served their specific purpose (saving memory & decluttering the written program)?
I do not want to rename, redimension and then reuse the array (as the coding will inevitably be more difficult to follow and debug).
  1 件のコメント
Steven Lord
Steven Lord 2019 年 6 月 29 日
If you're writing script files, variables aren't deleted until you explicitly clear them or until the caller's workspace is destroyed. If you're running the scripts from the prompt in the Command Window they're running in the base workspace, which persists until you close MATLAB.
If you're writing function files, the function workspace (and its contents) are destroyed when the function exits after the output arguments have been returned to the caller. [It's a bit more complicated than that with persistent variables, nested functions, etc. but that statement is accurate enough for purposes of this discussion.]
So breaking your program into "bite sized chunks", extracting commonly used steps into functions, can help keep your workspaces organized.

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2019 年 6 月 29 日
If "myArray" is your array name:
clear('myArray');
  2 件のコメント
Jay
Jay 2019 年 6 月 29 日
Thank you Image Analyst.
I have to get used to arrays being referred to as variables in coding terminology.
Image Analyst
Image Analyst 2019 年 6 月 29 日
Just to expand on this, it could be any variable -- it doesn't have to be an array. You could get rid of tables, cell arrays, structures, class objects, scalars, or whatever.

サインインしてコメントする。

その他の回答 (1 件)

per isakson
per isakson 2019 年 6 月 29 日
編集済み: per isakson 2019 年 6 月 29 日

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by