assigning an empty numeric value to a cell array

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 日

2 投票

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeResizing and Reshaping Matrices についてさらに検索

タグ

質問済み:

2014 年 11 月 17 日

回答済み:

2014 年 11 月 17 日

Community Treasure Hunt

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

Start Hunting!

Translated by