MATLAB GUI uitable
12 ビュー (過去 30 日間)
古いコメントを表示
I have a table with 2 columns and 2 rows, to display all data in table I use the get(handles.uitable1, 'data') function.
But I want to display only one cell, for example the first column and the first row (1,1). How to format function now? I would be very thankful.
0 件のコメント
採用された回答
Paulo Silva
2011 年 3 月 1 日
Simple example
Data = {1, 2
3,4}
Data(:,1) %first column
Data(1,:) %first row
Data(1,1) %just the first cell
3 件のコメント
その他の回答 (1 件)
deekay uto
2011 年 3 月 1 日
sorry for disturbing, i want to ask, how i can call function in train button...i hve been asked to develop a system to predict rainfall,it required GUI..so i dont knw how to call bck the function at train button. on my gui i got mse,epoch,input node,stimulate and error. i really need ur opinion...regard
2 件のコメント
Walter Roberson
2017 年 7 月 12 日
KAE: deekay uto would not have been notified about your comment. And as it is now 6 years later, deekay uto is probably not checking for responses.
参考
カテゴリ
Help Center および File Exchange で Develop Apps Using App Designer についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!