Saving characters from a loop

I wrote this code to count wins and losses but i need to save the W or L to a matrix.
for g=1:num_games
if scores(g,6) > scores(g,7)
disp('W')
else
disp('L')
end
end

Risposte (1)

Stephen23
Stephen23 il 4 Apr 2019
Modificato: Stephen23 il 4 Apr 2019
No loop required:
V = 'LW';
Z = V(1+(scores(:,6)>scores(:,7)))

Categorie

Scopri di più su Loops and Conditional Statements in Centro assistenza e File Exchange

Richiesto:

il 4 Apr 2019

Modificato:

il 4 Apr 2019

Community Treasure Hunt

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

Start Hunting!

Translated by