- Tables, Arrays in tabular form whose named columns can have different types
- table, Create table from workspace variables
How do I display these matrices side by side incluing one with character strings.
5 次查看(过去 30 天)
显示 更早的评论
Ok, so right now I am trying to display some stats and the problem is the fact that the matrix with characters in it will not allow me to present all four matrices side by side. Here are the ones I am talking about:
R=[1;2;3;4;5;6;7;8;9;10];
N=['Kent';'Virg';'Gonz';'Duke';'Wisc';'Vill';'Ariz';'Kans';'Utah';'Notr'];
W=[25;23;26;22;23;23;22;21;20;22];
L=[0;1;1;3;2;2;3;4;4;4];
Now, I know that fprintf seems to be the best bet but I haven't been able to get it to work.
0 个评论
采纳的回答
per isakson
2015-3-1
编辑:per isakson
2015-3-1
"I haven't been able to get it to work"   Show what you done and we have a chance to spot your mistake.
for rr = 1 : length(R)
fprintf( '%6s%6i%6i%6i\n', N(rr,:),R(rr),W(rr),L(rr) );
end
See
Warning: table is fairly new in Matlab
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!