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

69 ビュー (過去 30 日間)
Gavin Thompson
Gavin Thompson 2021 年 9 月 7 日
編集済み: Dave B 2021 年 9 月 7 日
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 Center および File ExchangeRandom Number Generation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by