Effacer les filtres
Effacer les filtres

hi, I want to find he index value of non-zero vectors in a cell array. How do I do that ? TIA

3 vues (au cours des 30 derniers jours)
for example E= 4×4 cell array
[0] [1×3 double] [1×3 double] []
[0] [] [1×3 double] [1×3 double]
[0] [] [] [1×3 double]
[0] [] [] []
Then how do I find which cells if column two contains non-zero vectors?

Réponses (1)

KSSV
KSSV le 23 Oct 2017
x = cell(3) ;
x{1,1} = rand(2) ;
x{2,2} = rand(3) ;
find(~cellfun(@isempty,x))

Catégories

En savoir plus sur Data Types 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