how to make the output change in a loop
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Faisal Al-Wazir
am 27 Jan. 2022
Kommentiert: Faisal Al-Wazir
am 28 Jan. 2022
%greetings
%im doing a code to add an unlimted team names
%my isseue is i don't know how to make the output change every time the loop is runinng
disp("how many teams ")
v=input('Num: ')
n=1
for a=1:v
t = strcat( 'variable_',num2str(v) )
variable.(t) = v
if n>0
n=1
n=input('team Name: ','s')
else
disp("alright")
end
end
1 Kommentar
Voss
am 27 Jan. 2022
You're probably going to want to use the variable 'a' somewhere in your for loop, since that is the loop iteration variable.
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!