Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Vectorizing this Operation
조회 수: 1 (최근 30일)
이전 댓글 표시
I have list of random permutations of length 3: [1 0 0], [0 1 0], [0 0 1], [1 1 0], ...
I have matrix of random values from 1 to 6 of size m by n. Where each value indexes a permutation.
I want to obtain the m by 3*n matrix where each index is replaced by its corresponding permutation. Advice?
댓글 수: 0
답변 (1개)
Walter Roberson
2011년 8월 20일
It will look something like
reshape(perms(pidx(:),:).',size(pidx,2)*size(perms,2),[]).'
but I didn't bother testing it out to be sure it gets everything in the right place (it's my bedtime.)
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!