Selecting a random element from a matrix with a range.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Shane McNamara
am 23 Okt. 2017
Kommentiert: Shane McNamara
am 24 Okt. 2017
I am trying to select a random element from this matrix with a certain range.
d = rand(10)
d(end,randperm(size(d,2), 1))
This creates a 10*10 matrix between 1 and 0. I want to slect a random variable < 0.5 but i am trouble applying this to the code. Any help is much appreciated.
2 Kommentare
Cedric
am 23 Okt. 2017
There may not be any element < 0.5. How do you define the number of elements that you will pick? What is the purpose?
Akzeptierte Antwort
Akira Agata
am 24 Okt. 2017
How about the following script?
d = rand(10);
% Extract elements of d < 0.5
idx = d < 0.5;
d2 = d(idx);
% If d2 is NOT empty, select one element randomly
if ~isempty(d2)
output = d2(randperm(numel(d2),1));
end
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!