How to generate unique random samples for the following scenario?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Manas Gupte
am 9 Okt. 2017
Kommentiert: Manas Gupte
am 9 Okt. 2017
I have rectangular formation of 208 bolts( 8 along the height and 28 along the length). I want to generate a random sample set of 10000 points which would give me different combinations of bolt failures. There is no restriction on the number of bolts that can fail.
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 9 Okt. 2017
Bearbeitet: Image Analyst
am 9 Okt. 2017
This will do it:
for k = 1 : 1000
% Get the number of failures for this row.
numFailures = randi(208);
% Get the failed indexes.
failedIndexes{k} = randperm(208, numFailures);
end
% Print to command window.
celldisp(failedIndexes);
Because it's a different number of failures each time, I used a cell array. You could use a regular array if you want - just make it big enough and set non-failures to nan or 0 or something.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements 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!