Re-generate random matrix

1 view (last 30 days)
Fahd Alqahtani
Fahd Alqahtani on 12 Apr 2018
Commented: Fahd Alqahtani on 12 Apr 2018
Hi
I have a matrix A (9X9) and I want to generate a new matrix B using the same matrix of A and should be distributed randomly and each number should be used once to generate matrix B.

Accepted Answer

David Fletcher
David Fletcher on 12 Apr 2018
Edited: David Fletcher on 12 Apr 2018
ind=randperm(81)
B=reshape(A(ind),9,9)

More Answers (0)

Categories

Find more on Random Number Generation 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!