How to display all values of uint32 array in variable browser?
Show older comments

I have a problem with this struct. In some fields, instead of the values as in the other fields, it's written 48x1 uint32. I want to have to numbers as in the other fields, for example [23;45;67].
My problem is that I want to save the struct in a csv file, and then open it with python, so I need to have in the fields the values instead of 48x1 uint32.
Answers (1)
ADDENDUM
You can open the array in its own spreadsheet form by double-clicking on it in the variable browser to prove the data are there.
I don't know what you intended to do with the variables window, anyway???
ADDENDUM 2
Presuming you can build the equivalent structure in Python, probably the better way to transfer the data would be to use unformatted stream files and serialize the structure and then read it in Python. Of course, this presumes consistency in padding and all (which is likely as long as keep to same platform/OS, odds go down when that changes so portability if an issue may become one).
Categories
Find more on Call Python from MATLAB 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!