How can I select n numbers from a large data that equals the given average?

2 次查看(过去 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
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.
Raj Shankar
Raj Shankar 2012-8-7
Hi Daniel
It is that I have a data of 1800 rows and 4 coloumns.
I have the formula for slope. And also I have the result of average slope value of 1294 valid points from the above bulk of data. Hereby I need to pick out that valid 1294 points that satisfies the average slope value. This 1294 points may be any from the 1800 points.
This is what. How can I do this?

请先登录,再进行评论。

采纳的回答

Azzi Abdelmalek
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

更多回答(1 个)

Andrei Bobrov
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))));

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by