フィルターのクリア

Updating Table Data not working

6 ビュー (過去 30 日間)
Tim Mottram
Tim Mottram 2012 年 9 月 20 日
Hi Guys, This should be simple but I seem to be hitting a brick wall:
I use:
table = uitable('Data',data,'RowNames',rowNames,'ColumnNames',colNames);
I then try:
set(table,'Data',data2)
But I am getting the error "Invalid handle object"
Any thoughts?
Thanks in advance
Tim.

採用された回答

Matt Fig
Matt Fig 2012 年 9 月 20 日
編集済み: Matt Fig 2012 年 9 月 20 日
Where is the second piece of code in relation to the first piece?
Strange, because it works just fine here:
RN = {'a','b','c'};
CN = {'col'};
dat = zeros(length(RN),length(CN));
table = uitable('Data',dat,'RowName',RN,'ColumnName',CN);
dat2 = ones(length(RN),length(CN));
set(table,'Data',dat2)
  10 件のコメント
Image Analyst
Image Analyst 2012 年 9 月 20 日
Before you execute the set(table,...) command, set a breakpoint on that line. Then over the mouse over table. Does it give a valid handle number, like 185.2347, or does it say empty or null or something bad like that? Or just type table into the command window and tell us what it says there. It will give the value of table or else say that something's wrong. If it's not a floating point number like I said then you blew it away somehow, perhaps with a call to clear or delete.
Tim Mottram
Tim Mottram 2012 年 9 月 21 日
Hi Guys, I'm really sorry, It was me being a total fool. I was closing the table before I updated the data. I'm really sorry if I have wasted your time. Thanks for all your help and patience.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by