How to compile two different array type into one variable
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
rootdir = 'C:\Users\acer\Desktop\abc';
filelist = dir(fullfile(rootdir,'**\*.xlsx'));
X = []; Y = [];
for ii = 1:length(filelist)
filelist(ii).data = importdata(fullfile(filelist(ii).folder,filelist(ii).name));
filelist(ii).data = (filelist(ii).data(:,:));
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1686546/image.png)
end
% combine all the data, one after the other, vertically:
all_data = vertcat(filelist.data); %this is where the error lies, since the data file were struct and cell
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1686551/image.png)
% How to convert all struct to cell assuming I have multiple struct file.
1 comentario
Stephen23
el 5 de Mayo de 2024
Editada: Stephen23
el 5 de Mayo de 2024
"How to compile two different array type into one variable"
What makes you think that the data can be meaningfully combined? It might be simple to combine, or it might be very complex (consisting of exception handling and special cases). We don't know.
Note that you should replace awful IMPORTDATA with a much better file-data importing function, e.g. READTABLE, READCELL, READMATRIX, or the like. Avoid IMPORTDATA.
Respuestas (1)
Suman
el 17 de Jun. de 2024
Hi Morin,
You need to first convert the struct to cell array to be able to concatenate them. You can use the 'struct2cell' function to achieve that. https://in.mathworks.com/help/matlab/ref/struct2cell.html
Also note that, in order to concatenate cell arrays, they must be of equal dimensions. In your case, the cell arrays in the data column are of unequal dimensions, so you must either pad the cell array with zeros or NaN to make the dimensions equal before you can concatenate them. Please refer to these MATLAB Answers to see the examples,
0 comentarios
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!