The Output structure of a code is showing different outputs in command window and workspace
8 views (last 30 days)
Show older comments
Manikanta Aditya
on 13 Jul 2024
Edited: Manikanta Aditya
on 16 Jul 2024
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 Comments
Accepted Answer
Walter Roberson
on 13 Jul 2024
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.
More Answers (1)
dpb
on 13 Jul 2024
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 Comments
See Also
Categories
Find more on Data Import and Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!