How to get a list of the structures used in a matlab code?

15 ビュー (過去 30 日間)
Robert Jones
Robert Jones 2018 年 6 月 4 日
コメント済み: Jan 2018 年 6 月 4 日
I need to get familiar with a large MATLAB code somebody else created. I would like to create a list of all the structures for documentation purposes. Any ideas?
Thanks
  1 件のコメント
Walter Roberson
Walter Roberson 2018 年 6 月 4 日
This can be a bit difficult to define. Technically, MATLAB considers each different struct to be a different data type. For some purposes, two structs are considered to be compatible if they have the same field names; for other purposes two structs are considered to be compatible only if they have all the same field names in the same order.

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

採用された回答

Jan
Jan 2018 年 6 月 4 日
If you got a "large code" (maybe some 100'000 lines of code) and it is not well documented, you are in pain. Such "brownfield projects" are extremely hard to debug, because you have to guess the purpose of the code. Therefore it is usually more efficient to delete the code and rewrite it.
But let's assume that this is not an option. Then getting a list of structs can be done only by reading the source code and collect, where which struct is defined and how. There is no magic tool to do this. Maybe the debugger helps you: Set a breakpoint at the end of each function and get the contents of the currently existing structs:
S = whos;
S = S(strcmp({S.class}, 'struct'));
disp(S)
  2 件のコメント
Jan
Jan 2018 年 6 月 4 日
[MOVED from section for answers] Robert Jones wrote:
Thanks, but all I wanted is the list of the names of the objects shown in the workspace. Isn't a simple way to get this?
Jan
Jan 2018 年 6 月 4 日
@Robert: Please post comments in the section for comments to avoid unnecessary confusion. Thanks.
Uhm. Yes. Use the code I've posted.

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by