How to permute the columns in a matrix in random way?
조회 수: 4 (최근 30일)
이전 댓글 표시
Hi, How to permute the columns in a matrix in randomly without changing its size ??
댓글 수: 0
채택된 답변
KSSV
2016년 12월 6일
k = rand(100) ;
ny =size(k,2) ;
shuffle = randsample(1:ny,ny) ;
k_shuffle = k(:,shuffle) ;
댓글 수: 2
추가 답변 (1개)
Daniel Morais
2017년 3월 21일
Utilize x = x( : , randperm(c)), onde x é a matriz e c o número de colunas de x. O mesmo vale para a permutação de linhas: x = x( randperm(l) , : ) onde l é o número de linhas.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 General Applications에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!