MATLAB: Simulink ToWorkspace block generates timeseries with incorrect data dimensions.

data dimensionssimulinktimetimeseries

I have a large simulink model with multiple ToWorkspace blocks in it. For some reason, some of the timeseries generated have a data dimension of nxm where the data dimension at time t is m and the dimension of the time vector is n. Seems to me that the last data dimension should correspond to the length of the time vector. All the multidimensional timeseries generated are the expected pxmxn with the time vector of length n. Not all of the 1 dimensional timeseries are incorrect. The settings for all the ToWorkspace blocks are the same. Very frustrating as I need to do complicated time analyses and the incorrect data dimensions keep breaking things.
I'm using 2013b.

Best Answer

The "To Workspace" block creates a timeseries with Data of size Nx1 when passed scalar signals and Data of size AxBxN for signals of size AxB.
When defining the elements of a bus in the Bus Editor you can specify the dimensions of each element. If the "Dimensions" field of a BusElement is set to 1, the output of a Bus Selector block for that element will be a normal scalar signal and will give an Nx1 matrix when exporting with the "To Workspace" block. However, if the "Dimensions" field is set to [1 1] the "To Workspace" block treats the signal like a two-dimensional signal and concatenates values from different time steps along the third dimension, which results in a 1x1xN variable exported to the workspace.
Assigning the dimensions of a Signal to [1 1] can cause Simulink to treat the signal as a 2D matrix. This can be demonstrated by connecting a Constant block, Signal Specification block, and To Workspace block together and setting the dimension to [1 1] in the Signal specification block.
To ensure consistent dimensions make sure all of your scalar bus elements that might affect the signal passed into the "To Workspace" block have their "Dimensions" field set to [1 1] and not 1 or set relevant Signal dimensions to [1 1] instead of 1.