how to convert single cell-elements to double?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Payjay
el 12 de Mayo de 2017
Comentada: Payjay
el 12 de Mayo de 2017
Hello everybody, I have a cell array in a cell array, with single elements, which are also from type cell. So it is pretty long-winded to do calculations with these. I would like to convert all these single-cell-elements contained in the other cell-array to a double in the cell array. Do you have any ideas?
Greets and Thanks!
0 comentarios
Respuesta aceptada
Walter Roberson
el 12 de Mayo de 2017
I lost track of how many levels of cell you have there. Perhaps
cellfun(@cell2mat, YourCellArray, 'Uniform', 0)
You might even have to...
cellfull( @(C) cellfun( @cell2mat, C, 'Uniform', 0), YourCellArray, 'Uniform', 0)
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!