how to search about a matrix in a cell?
    4 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Sarah A
 el 19 de En. de 2019
  
    
    
    
    
    Comentada: Sarah A
 el 19 de En. de 2019
            Hello,
Suppose that I have the cell matrix A which contains the following elements:
A={ 
[0;0] [0;1] 
[1;0] [0;0]
}
So I want to use a line of code that can count how many [0;0] are in each row ?
Regards,
0 comentarios
Respuesta aceptada
Más respuestas (1)
  madhan ravi
      
      
 el 19 de En. de 2019
        
      Editada: madhan ravi
      
      
 el 19 de En. de 2019
  
      Sarah's (OP) example:
A={ ...
[0;0] [0;1] 
[1;0] [0;0]
};
counts=nnz(~cellfun(@any,A))
Gives:
counts =
     2
Stephen's example:
A={[0;0] [0;1] [1;0] [0;0] [0;0]};
counts=nnz(~cellfun(@any,A))
Gives:
counts =
     3
5 comentarios
Ver también
Categorías
				Más información sobre Multidimensional Arrays 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!


