Loop to generate random numbers and compile results for each iterations

2 visualizaciones (últimos 30 días)
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

Respuesta aceptada

Stephen23
Stephen23 el 28 de Ag. de 2019
Editada: Stephen23 el 28 de Ag. de 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 comentarios
Stephen23
Stephen23 el 28 de Ag. de 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 el 28 de Ag. de 2019
Thanks Stephen. Very helpful indeed.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by