How to display all uint32 array values ​​in a variable browser?

I have a structure as shown below:

enter image description here

I have a problem with this structure. In some fields, instead of values, as in other fields, it is written 48x1 uint32. I want to have numbers, as in other fields, for example [23;45;67].

My problem is that I want to save the structure in a csv file and then open it with python and save the structure as it is in the fields, I need values, not 48x1 uint32.

+4
source share
1 answer

, double uint32, . , , 10.

a.b = uint32(randi(20,10,1));   %// gets displayed
a.c = double(randi(20,10,1));   %// gets displayed
a.d = uint32(randi(20,11,1));   %// does not get displayed
a.c = double(randi(20,11,1));   %// does not get displayed

enter image description here

.


, csv, python , , 48x1 uint32.

, . 11 , . patients(56) a patients(57), .

+2

Source: https://habr.com/ru/post/1677118/


All Articles