フィルターのクリア

Save output variables from uitable in the workspace

9 ビュー (過去 30 日間)
Joseba Moreno
Joseba Moreno 2019 年 11 月 29 日
編集済み: Stephen23 2019 年 12 月 2 日
Hi there,
I am facing some troubles when trying to save the updated values of my editable table into the workspace. The table is automatically updated and changes are saved in "ans". Here the script:
f = figure(1);
d = zeros(1, 7);
t = uitable(f,'Data',d,'ColumnWidth',{50},...
'ColumnEditable', [true true true true true true true]);
% GET DATA whenever the data change
set(t,'CellEditCallback','get(t,''Data'')');
So I would like to have a "real" variable which does the same as "ans". Is this possible?
Thanks in advance.

採用された回答

Devineni Aslesha
Devineni Aslesha 2019 年 12 月 2 日
Hi Joseba,
To save the updated values of the editable table into the workspace in the newData variable, use the below command.
set(t,'CellEditCallback','newData = get(t,''Data'')');
  1 件のコメント
Stephen23
Stephen23 2019 年 12 月 2 日
編集済み: Stephen23 2019 年 12 月 2 日
Note also that the uitable documentation
states that providing a character vector for the callback function is "not recommended".
What exactly is "the workspace" ? Do you mean the function workspace or the base workspace?

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by