A fast way of reshaping a cell array with elements with different sizes

Hello all,
I have a cell array in this form:
a=[1x16x16 double] [1x8x16 double] [1x4x16 double] [1x2x16 double]
I am looking for a fast way to reshape each element such that I get
a=[16x16 double] [8x16 double] [4x16 double] [2x16 double].
I would appreciate your help!

Plus de réponses (1)

Walter Roberson
Walter Roberson le 25 Juin 2015
Modifié(e) : Walter Roberson le 25 Juin 2015
b = cellfun(@squeeze, a, 'uniform', 0);

3 commentaires

Thank you, but I am getting the following error: Error using cellfun Non-scalar in Uniform output, at index 1, output 1. Set 'UniformOutput' to false.
I really appreciate it!

Connectez-vous pour commenter.

Catégories

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by