assigning an empty numeric value to a cell array

20 次查看(过去 30 天)
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!

采纳的回答

Guillaume
Guillaume 2014-11-17
>>c = {[]};
>>class(c{1})
ans = double
>>isempty(c{1})
ans = 1
Or if you really want to be specific:
c = {double.empty(0)};

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Type Identification 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by