Effacer les filtres
Effacer les filtres

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

11 vues (au cours des 30 derniers jours)
Robert Jones
Robert Jones le 4 Juin 2018
Commenté : Jan le 4 Juin 2018
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 commentaire
Walter Roberson
Walter Roberson le 4 Juin 2018
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.

Connectez-vous pour commenter.

Réponse acceptée

Jan
Jan le 4 Juin 2018
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 commentaires
Jan
Jan le 4 Juin 2018
[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 le 4 Juin 2018
@Robert: Please post comments in the section for comments to avoid unnecessary confusion. Thanks.
Uhm. Yes. Use the code I've posted.

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by