Swap shape of cell array full of arrays
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Cedric Kotitschke
il 15 Gen 2024
Commentato: Cedric Kotitschke
il 15 Gen 2024
Hey,
I have a nxn cell array where each element contains a 1xm array.
How do I turn this into a 1xm cell array where each element contains a nxn array?
So basically from:
{[1 2 3 4 5], [1 2 3 4 5]; [1 2 3 4 5], [1 2 3 4 5]}
to
{[1 1; 1 1], [2 2; 2 2], [3 3; 3 3], [4 4; 4 4], [5 5; 5 5]}
Thanks!
0 Commenti
Risposta accettata
Stephen23
il 15 Gen 2024
C = {[1,2,3,4,5], [1,2,3,4,5]; [1,2,3,4,5], [1,2,3,4,5]}
F = @(a)reshape(a,1,1,[]);
D = reshape(num2cell(cell2mat(cellfun(F,C,'uni',0)),1:2),size(C{1}))
D{:}
Più risposte (1)
Hassaan
il 15 Gen 2024
Modificato: Hassaan
il 15 Gen 2024
Approach 1
% Example input: an nxn cell array
n = 2;
m = 4; % changed from 5 to 4 to make it reshapeable to 2x2
inputCellArray = cell(n, n);
for i = 1:n
for j = 1:n
inputCellArray{i, j} = 1:m; % changed from [1 2 3 4 5] to 1:4
end
end
% Reshape the input cell array into a 1xm cell array of 1x(n^2) arrays
reshapedCellArray = reshape(inputCellArray', 1, []);
% Use cellfun to reshape each element in the reshapedCellArray into a 2x2 array
outputCellArray = cellfun(@(x) reshape(x, n, []), reshapedCellArray, 'UniformOutput', false);
% Display the resulting 1xm cell array of nxn arrays
disp(outputCellArray);
% Print the values of each 2x2 array
for i = 1:numel(outputCellArray)
fprintf('Cell %d:\n', i);
disp(outputCellArray{i});
end
---------------------------------------------------------------------------------------------------------------------------------------------------------
If you find the solution helpful and it resolves your issue, it would be greatly appreciated if you could accept the answer. Also, leaving an upvote and a comment are also wonderful ways to provide feedback.
Professional Interests
- Technical Services and Consulting
- Embedded Systems | Firmware Developement | Simulations
- Electrical and Electronics Engineering
Feel free to contact me.
1 Commento
Dyuman Joshi
il 15 Gen 2024
The output from your code is not correct (compared to the expected output).
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!