Filling Cell Array with Empty value
Mostrar comentarios más antiguos
Hi Everyone
I have cell arracy call Reults look like given below 4x1 cell
3x1 cell
4x1 cell
3x1 cell
4x1 cell
4x1 cell
4x1 cell
4x1 cell
4x1 cell
4x1 cell
5x1 cell
4x1 cell
4x1 cell
5x1 cell
I want to do the dimension equal of each cell by filling with empty value so that it becomes like 5x1 cell
5x1 cell
5x1 cell
5x1 cell ... and so on.
Can any one help ? It would be great to check if dimension of any cell in a cell called 'Result' is less than 5 say 4x1 make it 5x1 by inseting the empty value at last.
If the check is not possible it is fine to make every cell with in cell call 'Result' 5x1
Thanks in advance.
Respuesta aceptada
Más respuestas (1)
As an alternative you can easily remove one level of the cell nesting:
V = {{0;1;2};{3;4;5;6};{7;8;9}};
for k = numel(V):-1:1
Z(1:numel(V{k}),k) = V{k};
end
This produces a cell array without other cells nested inside it, each column is one of the cells of the original array (swap the Z-indices to make this the rows):
>> Z
Z =
[0] [3] [7]
[1] [4] [8]
[2] [5] [9]
[] [6] []
It may be easier to access the contents:
>> Z(:,2)
ans =
[3]
[4]
[5]
[6]
1 comentario
Abi Waqas
el 26 de Nov. de 2015
Categorías
Más información sobre Operators and Elementary Operations en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!