Showing a table in msgbox

조회 수: 14 (최근 30일)
Sine  Palm
Sine Palm 2015년 11월 20일
댓글: Star Strider 2015년 11월 20일
Hey.
I have given a table with students and their grades. I have to sort them and then display the table again. How can I display the table in a message box? Or in some other kind of popup window

답변 (1개)

Star Strider
Star Strider 2015년 11월 20일
I would use listdlg:
r = double('AZ'); % Create Data
names = char(randi(r, 10,5));
grades = randi([70 99], 10,1);
the_list = {cat(2, names, repmat(' ', 10, 1), num2str(grades))}; % Create Data
[student_nr, sel] = listdlg('PromptString','Class Results','ListString',the_list);
This allows you to select a particular student, or not, as you wish.
  댓글 수: 2
Sine  Palm
Sine Palm 2015년 11월 20일
편집: Sine Palm 2015년 11월 20일
I don't want to select a particular student.I just want to show the table in a box instead of in the command window? Sorry if my question was confusing...
Star Strider
Star Strider 2015년 11월 20일
You don’t have to do anything with the listdlg, although it gives you that option. It’s just the easiest way to display a list that I’m aware of.

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

카테고리

Help CenterFile Exchange에서 Tables에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by