Borrar filtros
Borrar filtros

The Output structure of a code is showing different outputs in command window and workspace

131 visualizaciones (últimos 30 días)
When working on a program, after executing it and checking output in MATLAB command window and in output from workspace is giving different outputs. Which is correct output here and what is this happening?
Command window output:
  11 comentarios
Manikanta Aditya
Manikanta Aditya el 16 de Jul. de 2024 a las 3:29
Thank you @dpb, @John D'Errico, @Walter Roberson everyone for your help!
I understood the issue here, whatever the file output is, the command window output is the correct and respective output. In workspace output struct, it was displaying all the outputs irrespective of any format, so I understood this is expected, hence this clarifies my query, Thanks again!

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 13 de Jul. de 2024 a las 17:27
The command window version is the result of an implicit execution of the display method. The display method examines the object details and displays whichever parts of it that it believes to be important, in whatever order it feels are important.
The workspace output examines the result of executing struct on the object. Hidden properties are exposed. Internal order is used.

Más respuestas (1)

dpb
dpb el 13 de Jul. de 2024 a las 15:57
As @John D'Errico says, they're both correct only the workspace browser has unfolded the various struct content that is only displayed as the struct, not the content of the struct in command window. So, there's more to the struct than is just displayed at the command window, but it would be very annoying if the command window expanded everything...
  4 comentarios
Manikanta Aditya
Manikanta Aditya el 13 de Jul. de 2024 a las 18:50
What is returned will be totally dependent upon what the content of what was read is and how it was read -- if the reader is returning ng data, it must be in the file regardless the extension that was used for the file
This is not possible for sure, the format files are different as they are meant to be.

Iniciar sesión para comentar.

Categorías

Más información sobre Software Development Tools en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by