I want to do bootstrap analysis by using 20*1 matrix.
2 次查看(过去 30 天)
显示 更早的评论
I want to draw 500 samples from the 20*1 matrix (20 pairs of observations).
In this case, what codes do I have to use?
0 个评论
采纳的回答
the cyclist
2022-10-27
One way is
% Pretend input data
M = rand(20,1);
idx = randi(20,500,1);
samples = M(idx);
0 个评论
更多回答(1 个)
the cyclist
2022-10-27
If you have the Statistics and Machine Learning Toolbox, you can do
% Pretend input data
M = rand(20,1);
samples = randsample(M,500,true);
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Hypothesis Tests 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!