I have the following MATLAB struct
with two fields:
I am trying to export this to Excel in two columns (or to notepad having just the second column of objectBoundingBoxes). When the field dimensions are 2x4 or 1x4, it displays semi colon separated values (which is what I want), but when the dimension is 3x4 or higher (up to 6x4), it just writes 3x4 double instead of writing them as semi colon separated values. So now when I copy paste the columns to Excel, it just writes 3x4 double instead of values.
Is there any way of displaying the semi colon separated values instead of 3x4 double in the variable display window of Matlab? If not then can you please suggest another way of exporting these values as [1,2,3,4; 5,6,7,8; 9,0,1,2....].