How to input and save data from image to uitable?
古いコメントを表示
how to enter data in comand window to the gui matlab uitable? I have a program from the data generating RGB image, how to insert the data to uitable? Please Help me Een sincerly Qurota Aini
回答 (1 件)
Walter Roberson
2013 年 10 月 1 日
Put the data into a cell array. set() the 'Data' property of the uitable to be the cell array.
For example,
tab = {2, 4, 6, 8*rand()};
set(handles.uitable1, 'Data', tab);
2 件のコメント
Een Qurota Aini
2013 年 10 月 1 日
編集済み: Een Qurota Aini
2013 年 10 月 1 日
Een Qurota Aini
2013 年 10 月 2 日
カテゴリ
ヘルプ センター および File Exchange で Preprocess Data for Deep Neural Networks についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!