How to find a certain content with index in cell array by looping
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Khaing Zin Htwe
el 30 de Jul. de 2016
Comentada: Khaing Zin Htwe
el 31 de Jul. de 2016
Dear senior,
I have a cell array like the following code. I want to sort like the following answer . How can I solve this? Help me. Thanks all.
if true
% 4 [] [] []
5 6 [] []
7 8 9 10
Desired Answer: 1x1 cell
4
5
6
7
8
9
10
end
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 30 de Jul. de 2016
A={4 [] [] []
5 6 [] []
7 8 9 10}
B=A'
idx=~cellfun(@isempty,B)
out=B(idx)
4 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Data Type Conversion 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!