Create a matrix with random integers between 1 and 9

조회 수: 12 (최근 30일)
Enric Gironès
Enric Gironès 2019년 5월 14일
편집: Andrei Bobrov 2019년 5월 14일
Hello.
I need help creating a 3x3 matrix.
I need to create a matrix of integers between 1 and 9 allocated randomly each time and without repeating the same number.
Here's an example:
matrix =
9 7 3
5 1 8
4 2 6
Thanks!

채택된 답변

Stephen23
Stephen23 2019년 5월 14일
편집: Stephen23 2019년 5월 14일
>> reshape(randperm(9),3,3)
ans =
6 8 2
3 5 4
7 1 9

추가 답변 (1개)

Andrei Bobrov
Andrei Bobrov 2019년 5월 14일
편집: Andrei Bobrov 2019년 5월 14일
[~,ii] = sort(rand(9,1));
out = reshape(ii,3,3);

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by