assigning an empty numeric value to a cell array
14 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Leo Simon
el 17 de Nov. de 2014
Respondida: Guillaume
el 17 de Nov. de 2014
Hi, I need to be able to assign an empty numeric value to a cell array, as in
Cell = {};
Cell = [ Cell , [] ];
But this returns
Cell =
{}
I specifically need the first element of Cell to have class numeric, and be empty.
Must be possible, but ...
thanks for any suggestions!
0 comentarios
Respuesta aceptada
Guillaume
el 17 de Nov. de 2014
>>c = {[]};
>>class(c{1})
ans = double
>>isempty(c{1})
ans = 1
Or if you really want to be specific:
c = {double.empty(0)};
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Resizing and Reshaping Matrices 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!