How Can I mix my matrix randomly ?

조회 수: 2 (최근 30일)
omar najjar
omar najjar 2021년 3월 5일
답변: KALYAN ACHARJYA 2021년 3월 5일
Bascially I have a matrix of size 100*100 and I want to reorder it randomly , how can I do that ?
Also can I do that by using randi ?
thanks

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2021년 3월 5일
One way: Here data is 100 by 100 matrix
mat_data=data(:);
result=reshape(mat_data(randperm(100*100)),[100,100]);

추가 답변 (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