Properties
Similar Topics
Statistics
Comments
4
Participants
3
Subscribers
3
Votes
1
Views
369
Share

How to Indexing the data of a list with respect to the unique ordered data.
Answered
l1={2,5,2,-1,2}
l2=Unique(l1)
l2={-1,2,5}
l2index={1,2,3}
index={2,3,2,1,2}
- GeoGebra
- Help
- Partners
-
Contact us
- Feedback & Questions
- This email address is being protected from spambots. You need JavaScript enabled to view it.
- +43 677 6137 2693
© 2023 International GeoGebra Institute
index = Sequence(IndexOf(l1(n), l2), n, 1, Length(l1))
index = Zip(IndexOf(z,l2),z,l1)
index = Sequence(IndexOf(l1(n), l2), n, 1, Length(l1))
index = Zip(IndexOf(z,l2),z,l1)
Zip(CountIf(a < b, a, l2), b, l1) + 1
Comments have been locked on this page!