Combine two cell arrays into a block diagonal array

4 visualizaciones (últimos 30 días)
Myrtle42
Myrtle42 el 10 de Feb. de 2018
Respondida: Walter Roberson el 10 de Feb. de 2018
The function blkdiag can be used to combine two numerical arrays with different dimensions into a block diagonal matrix, with 0s in the missing locations. Is there anything similar for two cell arrays, where the missing elements would just be empty cells? (I could do it manually, just wondering if there is a built-in function to keep my code clean as with blkdiag). Thanks!

Respuestas (1)

Walter Roberson
Walter Roberson el 10 de Feb. de 2018
n = numel(YourCell);
out = cell(n, n);
out(1:n+1:end) = YourCell;

Categorías

Más información sobre Creating and Concatenating Matrices 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!

Translated by