I want to do bootstrap analysis by using 20*1 matrix.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Chris
el 26 de Oct. de 2022
Respondida: the cyclist
el 27 de Oct. de 2022
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 comentarios
Respuesta aceptada
the cyclist
el 27 de Oct. de 2022
One way is
% Pretend input data
M = rand(20,1);
idx = randi(20,500,1);
samples = M(idx);
0 comentarios
Más respuestas (1)
the cyclist
el 27 de Oct. de 2022
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 comentarios
Ver también
Categorías
Más información sobre Hypothesis Tests en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!