Borrar filtros
Borrar filtros

Applying functions to each cell in a cell array

22 visualizaciones (últimos 30 días)
Benedict Low
Benedict Low el 4 de Ag. de 2017
Comentada: Benedict Low el 6 de Ag. de 2017
Good afternoon,
I have a 60 by 1 cell array that stores matrices of different sizes (all numeric). I want to perform certain functions (mean, diff, hypot, convhull...etc) on these matrices from the 1st element of the cell array, to the 60th element.
Is there a way I can do that?
Thank you.
  3 comentarios
Jan
Jan el 4 de Ag. de 2017
Did you read the answers, which have been given already?
Benedict Low
Benedict Low el 6 de Ag. de 2017
Yes I did Jan. But ran into errors. Trying to fix them now.

Iniciar sesión para comentar.

Respuesta aceptada

the cyclist
the cyclist el 4 de Ag. de 2017
Editada: the cyclist el 4 de Ag. de 2017
cellfun does exactly this.

Más respuestas (2)

Moses Wayne
Moses Wayne el 4 de Ag. de 2017
The function call "cellfun" is a useful function in this case. In the case of the function mean, the code below would work to get the mean of each subset within the cell array:
myCell = {[0 1 2]; [3 4 5]; [6 7 8]; [9 10 11]}
result = cellfun(@mean,myCell)
In this case, result would be an array of values [1 4 7 10]. I've linked the documentation to "cellfun" here.

Adam
Adam el 4 de Ag. de 2017
If you have multiple functions to perform a for loop would likely be simplest. The idea that for loops are very slow in Matlab is often erroneous. I favour cellfun and arrayfun from an aesthetic perspective, but from a speed perspective for loops are usually faster. And certainly if you want to calculate multiple things then a single pass over the data in a for loop is a lot better than multiple calls to cellfun, though you could of course create a composite function that will calculate all your results on a single cell and then call this via cellfun if you prefer the cellfun approach.

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by