Display matrix with row and column labels

4 次查看(过去 30 天)
Hi all,
Is there a convenient way to display a matrix with row and column labels in the Matlab terminal? Something like this:
In the second row it will calculate x^2+4 also.
I know it is easily can be shown with the code:
x = 1:100;
table = [x; x.^2+4]
But it seems a bit nasty.
I will be happy if you will able to help. Thanks...

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2013-11-10
Use uitable
x=1:10
M=[x;x.^2+1]
r={'x' 'x^2+1'}
f=figure('position',[100 100 900 200])
t=uitable(f,'data',M,'rowname',r,'position',[0 0 850 200])
  3 个评论
Azzi Abdelmalek
Azzi Abdelmalek 2013-11-10
x=1:10
M=[x;x.^2+1]'
r={'x' 'x^2+1'}
f=figure('position',[400 400 300 500])
t=uitable(f,'data',M,'columnname',r,'position',[0 0 250 500])

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by