writing a table into a subplot of a figure

조회 수: 9 (최근 30일)
Brad
Brad 2012년 5월 11일
I would like to create a figure with a few subplots, at least one of these being a data table to show the statistics (mean, st. dev., st. err.) of some measurements in the plots.
How do I write a table into a figure? I have tried fprintf, disp, sprintf, all of which write into the workspace, and I have tried text which is good for writing something, but not necessarily the organization of a table. Sometimes numbers will be big and other times they will be small, so using the text command becomes complicated in laying out the table and having it fit into the subplot.
Is there a function for a table? Is there an easier way to do it with text? Can I have a table without figure axes?

채택된 답변

Doug Hull
Doug Hull 2012년 5월 11일
I think you are looking for this:
  댓글 수: 1
Brad
Brad 2012년 5월 17일
Thank Doug. It is actually a little more than I need, but it works well. One further question - I have column headings that I store, as per the Mathworks examples for uitable, in curly brackets:
coltitles={'\delta^{47}','\delta^{48}','\delta^{49}','\delta^{13}C',...etc.}
The problem is that these are not converted into Greek symbols and super/subscripts on the table output. Why are text entries coded differently in uitable? Is it the way I have stored the variables? I have tried square brackets (a matrix of text entries), and that has the problem of simply printing every heading into one cell of the table.
Thanks,
Brad

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

추가 답변 (2개)

Matthew
Matthew 2012년 5월 11일
I recently worked this out for my personal case - UITABLE is great, but did not give me the look I wanted. Here is what I did:
NOTE: Using Courier is good for the justification issues to get text aligned.
% Convert to text
intCellString = cell([size(sub_rmsint_tab,1) 1]);
for ii = 1:size(sub_rmsint_tab,1)
thisRow = [];
for jj = 1:size(sub_rmsint_tab,2)
if isnan(sub_rmsint_tab(ii,jj))
thisRow = [thisRow ' '];
else
%thisRow = [thisRow sprintf('%7.0f',sub_rmsint_tab(ii,jj))];
thisRow = [thisRow sprintf('%7.0f\t',sub_rmsint_tab(ii,jj))];
end
end
intCellString{ii,1} = thisRow;
end
% Convert to text
depCellString = cell([size(sub_dep_tab,1) 1]);
for ii = 1:size(sub_dep_tab,1)
thisRow = [];
for jj = 1:size(sub_dep_tab,2)
thisRow = [thisRow sprintf('%7.0f\t',sub_dep_tab(ii,jj))];
end
depCellString{ii,1} = thisRow;
end
x = -3;
y = -5;
subplot(1,3,3)
myBigTable = [{' From Semblance Analysis'};...
{' TWTT Depth TWTT bsf Depth bsf Vint Vrms'};...
intCellString; {' '};{' '};{' '};...
{' From Refraction Modeling'};...
{' TWTT Depth TWTT bsf Depth bsf Vint Vrms'}; ...
depCellString];
t1 = text(x,y,myBigTable);
set(t1,'fontname','courier')
set(t1,'fontsize',6)
set(t1,'HorizontalAlignment','left')
  댓글 수: 1
Brad
Brad 2012년 5월 17일
This seems interesting, but it is a little too complicated to follow without the context of your code.

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


Brad
Brad 2012년 5월 17일
re-iterating the comment I made to Doug above (in case an answer generates more visibility than a comment)
I have column headings that I store, as per the Mathworks examples for uitable, in curly brackets:
coltitles={'\delta^{47}','\delta^{48}','\delta^{49}','\delta^{13}C',...etc.}
The problem is that these are not converted into Greek symbols and super/subscripts on the table output. Why are text entries coded differently in uitable? Is it the way I have stored the variables? I have tried square brackets (a matrix of text entries), and that has the problem of simply printing every heading into one cell of the table.
  댓글 수: 4
Brad
Brad 2012년 5월 18일
Now the question is more like Why!!!?!?!??? #$!@! Your suggestion generates the following error before execution of the M-file:
??? Error: File: DPClumped.m Line: 81 Column: 17
Unexpected MATLAB expression.
These are lines of code I tried:
del = '<HTML>δ<sup>' ;
Del = '<HTML>Δ<sub>';
coltitles={[del'47'],[del'48'],[del'49'],[del'13' C],...
[del'18' O],[Del'47-[EGvsWG]'],[Del'48-[EGvsWG]'],...
[Del'49-[EGvsWG]'];
Norman Koren
Norman Koren 2013년 3월 1일
It worked well for me when I used a well-formed HTML expression:
'&Delta;'
But frustrating that it's inconsistent with the rest of Matlab and not well documented (I'd be out of luck if it weren't for this post).

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

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by