Create a matrix with random integers between 1 and 9

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!

 采纳的回答

更多回答(1 个)

Andrei Bobrov
Andrei Bobrov 2019-5-14
编辑:Andrei Bobrov 2019-5-14
[~,ii] = sort(rand(9,1));
out = reshape(ii,3,3);

类别

帮助中心File Exchange 中查找有关 Logical 的更多信息

产品

版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by