How do I make a World Cup simulator with MATLAB?

조회 수: 1 (최근 30일)
Er Le
Er Le 2022년 5월 20일
댓글: Er Le 2022년 5월 24일
I am currently making a World Cup simulator with matlab
The list below is the groups
How should I write the code to make my simulator work?
  • from each group, I want to choose 2 random teams
  • the 2 randomly chosen team would qualify to the tounament, which starts from the round of 16
Can someone help me?
A={'Qatar';'Ecuador';'Senegal';'Netherlands'};
B={'England';'IR Iran';'USA';'Euro Play-off'};
C={'Argentina';'Saudi Arabia';'Mexico';'Poland'};
D={'France';'IC Play-off 1';'Denmark';'Tuinisa'};
E={'Spain';'IC Play-off 2';'Germany';'Japan'};
F={'Belgium';'Canada';'Morocco';'Coratia'};
G={'Brazil';'Serbia';'Switzerland';'Cameroon'};
H={'Portugal';'Ghana';'Uruguay';'Korea Republic'};

채택된 답변

the cyclist
the cyclist 2022년 5월 20일
You can use the randperm function to select 2 out of 4 teams to advance in each section.
rng default
A={'Qatar';'Ecuador';'Senegal';'Netherlands'};
teamRank = randperm(4);
A_advance = A(teamRank(1:2))
A_advance = 2×1 cell array
{'Senegal'} {'Qatar' }

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Just for fun에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by