gpt4 book ai didi

arrays - 查找每个值最后一次出现的索引

转载 作者:太空宇宙 更新时间:2023-11-03 20:11:15 27 4
gpt4 key购买 nike

我有一个这样的向量:

>> v = [1 1 1 2 2 3 4 4 4 4 4 5 5]'

v =

1
1
1
2
2
3
4
4
4
4
4
5
5

向量已排序。每个值可以有任意数量。我需要找到每个值最后一次出现的索引。在这种情况下,它会返回这个:

answer =

3 % index of the last occurence of "1"
5 % index of the last occurence of "2"
6 % index of the last occurence of "3"
11 % index of the last occurence of "4"
13 % index of the last occurence of "5"

最佳答案

感谢@trumpetlicks,答案是独一无二的

>> v = [1 1 1 2 2 3 4 4 4 4 4 5 5 6]'

v =

1
1
1
2
2
3
4
4
4
4
4
5
5
6

>> [~, answer] = unique(v)

answer =

3
5
6
11
13
14

[编辑]在最新版本的 MCR(R2013?)中,unique 的行为发生了变化。要获得相同的结果,您必须使用 unique(v, 'legacy');

关于arrays - 查找每个值最后一次出现的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11364920/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com