display numbers at table in matlab

dear all... i want to ask about how to display numbers in matlab table?? the example like that : if i have a number at a text in GUI, the number is "25", how can i display "25" in the first column of the firs row??
i really hope u can answer my question... thank you...

댓글 수: 1

Walter Roberson
Walter Roberson 2012년 6월 22일
See for example http://www.mathworks.com/matlabcentral/answers/41750-i-need-some-help-with-creating-a-program-containing-a-graph-and-table

댓글을 달려면 로그인하십시오.

답변 (1개)

Image Analyst
Image Analyst 2012년 6월 22일

0 개 추천

One way is to put a uitable control on your GUI. You can use GUIDE to place such a table on your window. Then create a cell array where each cell in the cell array contains the contents of one "cell" in your table. Assign that cell array to the 'data' property.
set(handles.myTable, 'Data', myCellArray);
The table will be like a spreadsheet. Be sure to set the ColumnEditable property to say whether or not you want to give your users the ability to change the table cell.

카테고리

도움말 센터File Exchange에서 MATLAB에 대해 자세히 알아보기

질문:

2012년 6월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by