pick numbers from matrix with probability

조회 수: 2 (최근 30일)
Nora Khaled
Nora Khaled 2019년 2월 17일
댓글: Nora Khaled 2019년 2월 17일
Hi !
I have a matrix that contain the probability of two variables.
is there a function that pick for example 6 numbers and get their index. but the numbers that it picks vary.
for example one equals the mean another one is way far from the mean and the rest in between.
as an example these are the value inside the matrix:
0.495172050518114 0.499673696800097 0.504165848780560 0.508647518680314
0.498924748106845 0.503460510444308 0.507986706526993 0.512502341089754
0.502655617713492 0.507225297666612 0.511785339830220 0.516334741496754
0.506363747185978 0.510967138022487 0.515560819970764 0.520143782926196
0.510048224444374 0.514685111140220 0.519312218302613 0.523928528477073
0.513708137847587 0.518378297090918 0.523038606626558 0.527688041699157
(the matrix I have is much biger so the values ar not as close to each other as in this portion)
in this case I would like to get 6 pairs of indix to distict values. I dont want to pick numbers that are all close to the mean or that all of them are far from it.

채택된 답변

John D'Errico
John D'Errico 2019년 2월 17일
This is one of those question that are almost impossible to answer, because your goal is so fuzzy, too unclear to write code to solve. You want a set of 6 disctint values from the set, randomly chosen, such that they are not too close to the mean, yet are not too far away. And worse, the real problem that you have is not the one you show, and is of course much larger.
The problem is that only you know what you mean by those fuzzy, loose descriptions.
So what you need to do is to quantify how you would know IF a set of numbers was poorly chosen. What does that mean to YOU?
Once you can do that, then there is a simple algorithm you can use.
Use randperm to choose a set of 6 random indices into that matrix. Then apply your measure to the set of values as chosen. Are thay adequate? If so, then you are done. If not, then choose another set of 6 random indices. Repeat until you are happy, or better yet, until your measure of gooodness is satisfied. But remember, only you can write that function that identifies if some set is good, because only you knows what you mean by not too close, not too far.
You may wonder how randperm can choose 6 sets of subscripts. But in reality, you have just 24 numbers there to choose from. For example, if we use randperm to choose 6 numbers from the integers 1:24, without replacement, we might get this:
set = randperm(24,6)
set =
21 9 15 19 13 24
MATLAB can use this single indices to index into a 2-dimensional matrix, as such...
matrix = [0.495172050518114 0.499673696800097 0.504165848780560 0.508647518680314
0.498924748106845 0.503460510444308 0.507986706526993 0.512502341089754
0.502655617713492 0.507225297666612 0.511785339830220 0.516334741496754
0.506363747185978 0.510967138022487 0.515560819970764 0.520143782926196
0.510048224444374 0.514685111140220 0.519312218302613 0.523928528477073
0.513708137847587 0.518378297090918 0.523038606626558 0.527688041699157];
matrix(set)
ans =
0.51633 0.50723 0.51179 0.50865 0.50417 0.52769
Or, you can convert them into a list of row and column indices.
[rowind,colind] = ind2sub([6,3],set)
rowind =
3 3 3 1 1 6
colind =
4 2 3 4 3 4
In the end though, you will be the one who needs to write the algorithm to define if the set of numbers as chosen was any good, in your opinion.
  댓글 수: 1
Nora Khaled
Nora Khaled 2019년 2월 17일
Thank you for your answer..
I just thought that matlab offers random pick arround the mean of the matrix. in which it picks randomly but mostly arround the mean (and not nesserly the mean it self).
anyway I did not find and function that do that.. or maybe my discribtion of the problem is not precise.
thank you.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by