How do I display these matrices side by side incluing one with character strings.

6 次查看(过去 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.

采纳的回答

per isakson
per isakson 2015-3-1
编辑:per isakson 2015-3-1
"I haven't been able to get it to work" &nbsp 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 CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by