how to use multiple function like mean and sum in cellfun at same time?
    4 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
Hi, i have a 30x1 cell array with nx4 cell. I want to perform mean on 2nd and 3rd column of nx4 and find sum of 4th column of nx4. i tried using B = cellfun(@mean,A,'UniformOutput',false); but it gave me mean for all columns in nx4.
0 comentarios
Respuestas (1)
  OCDER
      
 el 9 de Oct. de 2018
        B = cellfun(@(x) [mean(x(:, 2:3), 1) sum(x(:, 4), 1)], A, 'UniformOutput', false);
you'll get a 30x1 cell containing a 1x3 matrix in each cell of 
[mean of 2nd column,   mean of 3rd column,   sum of 4th column]
Ver también
Categorías
				Más información sobre Structures 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!

