Borrar filtros
Borrar filtros

How can I find the minimum value from all the cells in a cell array?

11 visualizaciones (últimos 30 días)
Hello, I have a cell array of 1x1296 in which each cell has 32 values. I would like to know how to find the minimum of all the cells, having the 32 values of 1 cell summed. Let's say I have one cell with: [1 0 1 0 1 1 1 1 1 1 0 1 0 1 0 1 0 1 0 1 1 0 0 0 1 0 1 0 1 0 1 1] that sums 19 in total and another cell similar to this one that sums 17, I would like to know how to do that for all the 1296 cells and then extract the minimum value of all of them.
Edit: The minimun in absolute value, I mean, between -0.3 and 0.1, 0.1 is the minimum value I wanted.
Edit 2: each cell is a vector 1x1x32 so I would like to sum all the 32 values into 1 and then finding the minimum absolute value of all 1296 cells.
Cell.png
Thank you!

Respuesta aceptada

madhan ravi
madhan ravi el 18 de Mzo. de 2019
[Value,Which_cell]=min(cellfun(@sum,C))
% or
[Value,Which_cell]=min(sum(cat(1,C{:}),2)) % assuming all cells have same size of elements
  5 comentarios
madhan ravi
madhan ravi el 18 de Mzo. de 2019
Next time illustrate the issue clearly to avoid confusions like this.
Mehri Mehrnia
Mehri Mehrnia el 27 de Jun. de 2022
what is the solution if cell arrays are in different sizes?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by