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.

 Akzeptierte Antwort

David Fletcher
David Fletcher am 12 Apr. 2018
Bearbeitet: David Fletcher am 12 Apr. 2018

3 Stimmen

ind=randperm(81)
B=reshape(A(ind),9,9)

Weitere Antworten (0)

Kategorien

Mehr zu Random Number Generation finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by