Create a matrix with random integers between 1 and 9
Show older comments
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!
Accepted Answer
More Answers (1)
Andrei Bobrov
on 14 May 2019
Edited: Andrei Bobrov
on 14 May 2019
0 votes
[~,ii] = sort(rand(9,1));
out = reshape(ii,3,3);
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!