フィルターのクリア

datestring in uitable problem with cells array

1 回表示 (過去 30 日間)
EanX
EanX 2013 年 2 月 20 日
I want to display a cell array in uitable, if I define, for example
c={'01-Feb-2008' 458;'08-Jun-2009' 5}
then
uitable('Data',c) it works correctly
while if I have something like this
c={cellstr(datestr(data_between_dates(1:2,1),'dd-mm-yyyy')) ,data_between_dates(1:2,2)}
where data_between_dates has a first column of datenum but I want to display date strings, then I get the following error:
Error using uitable Values within a cell array must be numeric, logical, or char
Error in uitable (line 52) thandle = builtin('uitable', varargin{:});
What's wrong? Thanks.
  2 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 2 月 20 日
What is data_between_dates?
EanX
EanX 2013 年 2 月 20 日
編集済み: EanX 2013 年 2 月 20 日
Is a matrix of 4 columns with datenum as first column (below first three rows):
733529,246527778 101 17 229
733529,250000000 114 17 229
733529,253472222 126 18 229

サインインしてコメントする。

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 2 月 20 日
編集済み: Azzi Abdelmalek 2013 年 2 月 20 日
Use
dates=cellstr(datestr(data_between_dates(1:2,1),'dd-mm-yyyy'))
data=num2cell(data_between_dates(1:2,2))
c=[dates data]
  1 件のコメント
EanX
EanX 2013 年 2 月 20 日
Perfect! Thanks!!

サインインしてコメントする。

その他の回答 (1 件)

Jan
Jan 2013 年 2 月 20 日
c = {cellstr(...
This creates a cell, whose first element is a cell string, not a string, like:
c = {{'string'}, ...}
But UITABLE can handle strings only.

カテゴリ

Help Center および File ExchangeDates and Time についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by