cell to double with mismatched dimensions

2 vues (au cours des 30 derniers jours)
Jonathan Soucy
Jonathan Soucy le 29 Août 2016
Commenté : Jonathan Soucy le 29 Août 2016
Input:
a = cell(3,1);
a{1,1} = [1 2 3];
a{2,1} = [1 2 3 4];
a{3,1} = [1 2 3 4 5];
Desired output:
b = [[1 2 3 0 0];[1 2 3 4 0];[1 2 3 4 5]];
What would be the best way to get this output from this input?

Réponse acceptée

Geoff Hayes
Geoff Hayes le 29 Août 2016
Modifié(e) : Geoff Hayes le 29 Août 2016
Jonathan - one way would be to use cellfun to apply a function to each element of your cell array padding each with zeros so that all arrays are of the same length. For example, we can get the maximum length as
maxLength = max(cellfun(@(x)length(x),a));
We would then use cellfun again to pad the arrays with zeros using repmat (which just repeats a matrix) as
aPadded = cellfun(@(x)[x repmat(0,1, maxLength - length(x))],a,'UniformOutput',false);
Finally, use cell2mat to convert your cell array into a matrix as
b = cell2mat(aPadded);
Try the above and see what happens!
  1 commentaire
Jonathan Soucy
Jonathan Soucy le 29 Août 2016
Hi Geoff, that worked very well. Thank you! I also came up with this solution which is actually very similar to what you came up with
a_max = max(cellfun(@length,a));
b = zeros(length(a),a_max);
for m = 1:length(a)
b(m,:) = [a{m,1} zeros(1,(a_max-length(a{m,1})))];
end
I'm not sure which option is best, but I guess it is good to have options

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by