how to find out the cell array size in for loop with conditions?
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
mukesh meharda
el 12 de Ag. de 2020
Comentada: KSSV
el 13 de Ag. de 2020
I had a cell array size 60*48 and each cell having one value( 1 or less than ), then In a for loop of 1:48 , I want to know in each step the length of cell array or nukber of rows when cell array values is equal to 1.
2 comentarios
Arthur Roué
el 12 de Ag. de 2020
I'm not sure to understand. Can you share some code ? Do you want to know the size of each element in your cell array rows ? What is equal to 1 ?
Respuesta aceptada
KSSV
el 13 de Ag. de 2020
Your mat file has a cell SoC2W. This is of size 60*48. Each element is a cell. You can convert it to matrix using:
M = cell2mat(SoC2W) ;
You matrix will be of size 60*48. So each column has 60 elements.
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Operators and Elementary Operations 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!