maxk from subset of array
8 次查看(过去 30 天)
显示 更早的评论
Hi,
I would like to solve the following prblem:
Lets say i have the vector :v=[10,22,3,-5,8,6,100,30,12,9]
I want to find the indicies and the values of the k largest number from a given subset, e.g: if the indices of the subset are [1,3,5,8] and k=2 the function will return: values=[10,30], indices=[1,8].
There is any suggestion how to implemet it?
Thanks
0 个评论
采纳的回答
Yazan
2021-8-17
clc, clear
v = [10,22,3,-5,8,6,100,30,12,9];
subIdx = [1,3,5,8];
k = 2;
% sort values and get corresponding indices
[val, idx] = sort(v(subIdx), 'descend');
% get only k values
val = val(1:k);
% get actual indices
Idx = subIdx(idx(1:k));
val
Idx
2 个评论
Yazan
2021-8-17
You may also use Matlab native function maxk instead of sorting the values. This might save you some processing power.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrices and Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!