Borrar filtros
Borrar filtros

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

16 visualizaciones (últimos 30 días)
Robert Jones
Robert Jones el 4 de Jun. de 2018
Comentada: Jan el 4 de Jun. de 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 comentario
Walter Roberson
Walter Roberson el 4 de Jun. de 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.

Iniciar sesión para comentar.

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Productos


Versión

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by