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

13 views (last 30 days)
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.

Accepted Answer

per isakson
per isakson on 1 Mar 2015
Edited: per isakson on 1 Mar 2015
"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

More Answers (0)

Community Treasure Hunt

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

Start Hunting!