Subset multidimensional array using a vector
조회 수: 4 (최근 30일)
이전 댓글 표시
I have an array A of 7 dimensions, and a vector v of length 5.
I need to select a subset of A where the first five coordinates are the ones specified by V. I can accomplish this by:
A(v(1), v(2), v(3), v(4), v(5), :, :)
but it wont work if the length of v changes from one application to another. Is there any way straight forward way to go about this?
Thanks!!!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Structures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!