How can I select n numbers from a large data that equals the given average?
1 次查看(过去 30 天)
显示 更早的评论
For Example: I have a data of rand(1000) numbers. I want to pick the 10 numbers that satisfy the average 47. And provided, only one set of 10 numbers from the group will satisfy the average 47. How can I do this? Is there any Matlab function for this?
2 个评论
Daniel Shub
2012-8-7
The RAND function returns a random number between 0 and 1. It is not possible to take 10 of those numbers that will average 47. Even if you scale the output of RAND, the numbers are floating point so the odds of finding a solution that exactly equals 47 is essentially zero. You need to tell us more about the data and what to do if the answer is not exactly 47 and ideally how close to 47 we need to get.
采纳的回答
Azzi Abdelmalek
2012-8-7
a=rand(1000,1)*100; % a your array
c= combnk(a,10);
b=mean(c,2)-47
[i,j]=min(abs(b))
samples=c(j,:) % the result
0 个评论
更多回答(1 个)
Andrei Bobrov
2012-8-7
variant
A = randi(4e6,1000);
[d,ii] = sort(A(:));
B = conv(d,.1*ones(10,1),'same');
i1 = find(B <= 47,1,'last');
out = A(sort(ii(i1 + (-4:5))));
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!