MATLAB: How to display these matrices side by side incluing one with character strings.

fprintflettersmatrixside by side

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.

Best Answer

"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