all,
I have a cell array with 5 cells as shown below:
<18250x1 int32> <18250x1 int32> <18250x1 int32> <18250x1 double> <18250x1 double>
In each cell, there are numbers of 18250 rows and 1 column.
Now I want to write these data into a csv file, with 18250 rows, 5 columns.
I've tried Cell2mat which only allows the array to have the same data types. I need to maintain the data types of int or double in the output. Anybody know how to solve this problem?
Thanks, James.