Filter löschen
Filter löschen

How can use randi function for a specific array of numbers?

13 Ansichten (letzte 30 Tage)
Gavin Thompson
Gavin Thompson am 7 Sep. 2021
Bearbeitet: Dave B am 7 Sep. 2021
function selectedValues = selectRandom( dataSet, numberSelected )
% selectRandom: Return numSel elements of input array data selected at
% random. Duplicate selections are acceptable.
% Inputs: data - array of input data values
% numSel - number of randomly selected elements to return
%
% Outputs: selected - array of randomly selected data values
% Choose randomly selected elements for output.
selectedValues = randi(max(dataSet),min(dataSet),numberSelected)
end
selectRandom([ 74, 13, 1, 51, 6 ], 3)
Hello, I am trying to generate a row of 3 random integers located within the array above. How can I tell my code to only pull numbers from the data set instead of all numbers in between?
I also tried this but it doesn't run correctly because it only recognizes scalar values.
randi(dataSet(1:end),1,numberSelected)

Akzeptierte Antwort

Dave B
Dave B am 7 Sep. 2021
Bearbeitet: Dave B am 7 Sep. 2021
How about using randi to pick indices into dataSet?
Alternatively, if you're not constrained to use randi, just use randsample instead (the randsample(population, k) syntax looks very much like your selectRandom syntax)..
selectRandom([ 74, 13, 1, 51, 6 ], 3)
ans = 1×3
6 51 6
selectRandom([ 74, 13, 1, 51, 6 ], 4)
ans = 1×4
6 74 1 13
function selectedValues = selectRandom( dataSet, numberSelected )
selectedValues = dataSet(randi(numel(dataSet), 1, numberSelected));
end

Weitere Antworten (0)

Kategorien

Mehr zu Random Number Generation 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!

Translated by