Place zero in an empty matrix within cell array?
16 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jones
el 6 de Sept. de 2017
Comentada: James Tursa
el 6 de Sept. de 2017
I have a cell array (x) where in this case there is no value in one of the cell matrix. I want to add a -1 value in the matrix as a way of 'place-holding' that column. I've tried these approaches:
emptyCells = cellfun('isempty',x);
x(emptyCells) = -1;
x(isnan([x{:}]))={-1}
x(cellfun(@isnan,x))={-1}
Any help would be greatly appreciated.
0 comentarios
Respuesta aceptada
James Tursa
el 6 de Sept. de 2017
x(emptyCells) = {-1};
2 comentarios
James Tursa
el 6 de Sept. de 2017
Basically, since x is a cell array, any subset of it using parentheses like x(whatever) is also a cell array, which means the right hand side needs to be a cell array also for the assignment to work like you want.
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrices and Arrays 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!