Sorting group position from 1

1 次查看(过去 30 天)
I have a group number of array
1) [2 3 2 1] I want [1 2 1 3]
2) [3 3 1 2] I want [1 1 2 3]

采纳的回答

Jonas
Jonas 2022-11-28
i think you are searching for this:
[~,~,c]=unique([2 3 2 1],'stable')
c = 4×1
1 2 1 3
[~,~,c]=unique([3 3 1 2],'stable')
c = 4×1
1 1 2 3

更多回答(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