How do I create a random matrix of numbers with 2 unique positions?

조회 수: 1 (최근 30일)
Tyler Nelson
Tyler Nelson 2019년 10월 11일
편집: Kevin Phung 2019년 10월 11일
I'm trying to create a game in MatLab for class project, one of my goals is to use a matrix to create a map, so I need to be able to generate an matrix of numbers that has 2 unique points, either fixed, or randomized, one for the player's starting positon, or spawn point, and one for the ending point as a goal for the character, I know how to create a matrix of random numbers using the rand command, however, I have no idea how to insert 2 unique points and make sure those 2 points are always there

답변 (1개)

Kevin Phung
Kevin Phung 2019년 10월 11일
start_pt = [1 3]; % first row, third col
end_pt = [5 1]; % fifth row, first col
M = rand(5); %5x5 random map
M(start_pt(1),start_pt(2)) = some_unique_value;
M(end_pt(1),end_pt(2)) = some_other_unique_value;
is this what youre looking for?
  댓글 수: 2
Tyler Nelson
Tyler Nelson 2019년 10월 11일
I didn't think about that, it would work, do you know of a way to randomize the start and end points ,or should I just keep them as fixed points?
Kevin Phung
Kevin Phung 2019년 10월 11일
편집: Kevin Phung 2019년 10월 11일
I don't have too much context so I don't really know what to suggest as the most optimal method. What exactly are you randomizing? Are you randomizing INDICES for where the start/end points would be, or are you randomizing the VALUE located at those FIXED indices?
the randi() function could help you here.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Conway's Game of Life에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by