i want to store the values entered in uitable (gui)....so as to use it in future .......
3 ビュー (過去 30 日間)
古いコメントを表示
i want to store the values entered in uitable (gui)....so as to use it in future .......
0 件のコメント
回答 (1 件)
Azzi Abdelmalek
2014 年 5 月 3 日
If You want to use it after another execution of your gui file, store it in a mat file
save yourfile yourmatrix
If you want to store it during the execution of your gui file you can use guidata
handles.yourmatrix=yourmatrix
guidata(hObject,handles)
To get your matrix
yourmatrix=handles.yourmatrix
1 件のコメント
Azzi Abdelmalek
2014 年 5 月 3 日
Mono commented
unable to undrstnd.... my uitable tag named as gendetail and size is 16*5 ... n file name is using table ...so plz tell me the syntax regarding these tags....
参考
カテゴリ
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!