How make Random sampling set multiple times
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi im beginer of matlab and now im try to make randomsapling
mulitple times.
so i want to make random samping from same data set multiple times
so i want to make
....
so i want to make above code just one code and make one data set.
thank you!
0 comentarios
Respuestas (1)
Deepak
el 8 de Oct. de 2024
To my understanding, you have written MATLAB code to generate “n” random samples from the given input data. Now, you want to automate this process and generate only one output dataset from all the generated samples.
To accomplish this task, we can pre-allocate a matrix to store the output sample data. Next, we can iterate “n” times using for loop to generate the samples and store them in the output matrix using array indexing in MATLAB.
Here is the MATLAB code that addresses this task:
data = 1:100;
k = 10;
n = 5;
% Preallocate a matrix to store the samples
samples = zeros(n, k);
% Perform random sampling multiple times
for i = 1:n
samples(i, :) = datasample(data, k);
end
disp('All samples in a single dataset:');
disp(samples);
Please find attached the documentations of “loops”, “zeros” and “array indexing” in MATLAB for reference:
I anticipate this will address the issue.
0 comentarios
Ver también
Categorías
Más información sobre Random Number Generation 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!