필터 지우기
필터 지우기

Sort multidimensional array along one dimension

조회 수: 7 (최근 30일)
Lennart
Lennart 2013년 12월 2일
댓글: Lennart 2013년 12월 2일
I have a [80 80 3 646 2] sized array of measurements which represent [80 80 3] points each with its 646 values at [: : : : 1] and time of measurement at [: : : : 2]. Now I want to order this 5 dimensional array along the values of time of measurement (so I can more easily interpolate/downsample later, but the first step I cant figure out is ordering).
I tried the sort function on the last dimension, but that did not sort it along the time values.

채택된 답변

Sean de Wolski
Sean de Wolski 2013년 12월 2일
If you want to sort along the fifth dimension, use:
xsorted = sort(x,5);
  댓글 수: 3
Sean de Wolski
Sean de Wolski 2013년 12월 2일
It sounds to me like you really have two separate arrays: a 4d array for measurement and a 4d array for time. If you create these, you can sort them how you wish (use the second output from sort to do the ordering in both if necessary).
Lennart
Lennart 2013년 12월 2일
Ah terrific, this works

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by