Help with Bootstrap functuon, bootfun variable

I have a curve data which:
x= (1:2^16) and y is a 1x2^16 matrix.
I want to create 9 more "y" data, by using bootstrap technique, that based on the initial y.
bootstat = bootstrp(nboot,bootfun,d); I wanted to use that function but I don't know what to write for "bootfun".

 Réponse acceptée

Jonas
Jonas le 1 Mai 2021
Modifié(e) : Jonas le 1 Mai 2021

0 votes

bootfun has to be empty using [ ]. then you just need the second output from bootfun [~,idx]=bootstrp(...) and idx contains n columns of index for n bootstrap sets, each column has the same number of entries as your original data. calling originalData(idx) will give you a bootstrap set in each column

4 commentaires

Mehmet Can MERIC
Mehmet Can MERIC le 1 Mai 2021
Modifié(e) : Mehmet Can MERIC le 1 Mai 2021
I didn't understand the first part of what you wrote.
Basically, for an example:
I have a curve that has a data of:
x = [1,2,3,4,5,6,7,8,9,10];
y = [1001,1002,1003,1004,1005,1006,1007,1008,1009,1010];
let's say these are all I have.
So now, I want to create 9 more curves by using the main curve above via bootstrap. What should I write?
Jonas
Jonas le 1 Mai 2021
Modifié(e) : Jonas le 1 Mai 2021
[~,idx]=bootstrp(9,[ ],y);
then call xBootstrapped=x(idx) and yBootstrapped=y(idx) which gives you each a 10x9 matrix. each column is a bootstrap set.
Thanks a lot!
Jonas
Jonas le 1 Mai 2021
good luck ;)

Connectez-vous pour commenter.

Plus de réponses (0)

Produits

Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by