how get it?
조회 수: 2 (최근 30일)
이전 댓글 표시
a=magic(5)
b=[1 3 2 4 5]
i want to get:
in 1 column i want to 1 element
in 2 column i want to 3 element
in 3 column i want to 2 element
in 4 column i want to 4 element
in 5 column i want to 5 element
ans:
17 6 7 21 9
댓글 수: 0
채택된 답변
Walter Roberson
2023년 10월 8일
a=magic(5)
b=[1 3 2 4 5]
v = a(sub2ind(size(a), b, 1:size(a,2)))
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 MATLAB Compiler에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!