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

13 次查看(过去 30 天)
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)

采纳的回答

Dave B
Dave B 2021-9-7
编辑:Dave B 2021-9-7
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Random Number Generation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by