How make Random sampling set multiple times
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Deepak
2024-10-8
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Random Number Generation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!