ushuffle the matrix elements

조회 수: 3 (최근 30일)
Offroad Jeep
Offroad Jeep 2022년 10월 22일
답변: John D'Errico 2022년 10월 22일
let a be any mXm matrix
e.g.
a = magic(3)
8 1 6
3 5 7
4 9 2
i want to shuffle the elements of the matrix so that they go to different positions
please guide.... Regards....

채택된 답변

John D'Errico
John D'Errico 2022년 10월 22일
a = magic(3)
a = 3×3
8 1 6 3 5 7 4 9 2
reshape(a(randperm(numel(a))),size(a))
ans = 3×3
7 6 1 8 2 5 9 3 4

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by