Loop to generate random numbers and compile results for each iterations

2 vues (au cours des 30 derniers jours)
JL
JL le 27 Août 2019
Commenté : JL le 28 Août 2019
Hi everyone, I've been trying to do a loop (i know I could just use rand(100000000,5) for what I want to achieve. May I know if there's any way I can compile results from the first iterations to the last??
for iter = 1:100 %run rand 1000 times
a=rand(1000000,5);
b=[0.02 0.03 0.11 0.02 0.05];
res = bsxfun(@gt,a,b)
d = bi2de(res);
dsubset=size(d,1);
dones=ones(dsubset,1);
[G,ID] = findgroups(d);
D = [splitapply(@sum,dones,G),ID];
C = [splitapply(@sum,dones,G),ID];
C(:,1)=[];
bC=de2bi(C);
Compile = [D,bC] %this be updated for new unique rows generated plus how many times they appear
end

Réponse acceptée

Stephen23
Stephen23 le 28 Août 2019
Modifié(e) : Stephen23 le 28 Août 2019
You could easily use a cell array:
N = 100;
Z = cell(1,N);
for k = 1:N
... your code
Z{k} = whatever you want to store
end
The stored data from each iteration is available in Z.
After the loop you can likely concatenate the contents of the cell array using
A = cat(1,Z{:}) % Or 2, depending on the array sizes.
  3 commentaires
Stephen23
Stephen23 le 28 Août 2019
"What is k?"
I copied part of your code and forgot to change the loop iteration variable. I have corrected my answer.
JL
JL le 28 Août 2019
Thanks Stephen. Very helpful indeed.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by