To find histogram of a particular cell of a cell array
    5 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    SP
 el 9 de Jul. de 2022
  
    
    
    
    
    Editada: Abderrahim. B
      
 el 9 de Jul. de 2022
            I am having a cell array (C) of 3072*2 cell each having 1*1295 matrix values, I need to plot histogram for a particular cell, for example, histogram of C{1,1} means, how can I do that? Kindly help me with this. Thanks in advance.  
Respuesta aceptada
  Abderrahim. B
      
 el 9 de Jul. de 2022
        
      Editada: Abderrahim. B
      
 el 9 de Jul. de 2022
  
      % Dont have data, creating dummy vector and cell and adding dummy vector to the
% the cell
dummyVec = randi(50, [1 1295]) ;
C = cell(3072,2) ;
C{1,1} = dummyVec ;
% Histogram
histogram(C{1,1})
0 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre Histograms 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!


