Sort multidimensional array along one dimension
5 ビュー (過去 30 日間)
古いコメントを表示
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.
0 件のコメント
採用された回答
Sean de Wolski
2013 年 12 月 2 日
If you want to sort along the fifth dimension, use:
xsorted = sort(x,5);
3 件のコメント
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).
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Shifting and Sorting Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!