Array input through MATALB - GUI
3 ビュー (過去 30 日間)
古いコメントを表示
Suraj Srivastava
2015 年 2 月 18 日
コメント済み: Suraj Srivastava
2015 年 2 月 18 日
Hi,
Is it possible to provide an array (7 row, 3 column)input through MATLAB GUI? I am comfortable with providing a single numeric value through GUI input box but wonder whether we can provide 2D array through MATLAB-GUI.
Looking forward to your help.
Thanks
0 件のコメント
採用された回答
Giorgos Papakonstantinou
2015 年 2 月 18 日
編集済み: Giorgos Papakonstantinou
2015 年 2 月 18 日
i.e.
f = figure;
d = randi(100, 7, 3);
t = uitable(f,'Data',d,'ColumnWidth',{50},...
'ColumnEditable', [true true true]);
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Environment and Settings についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!