random resampling with rebalancement

1 Ansicht (letzte 30 Tage)
Dam
Dam am 6 Aug. 2012
I have an array Y (3000*1) from which i want to drow an n=100 random samples with rebalancement(with repeating possible), such that each sample contains 252 consecutive values from Y (i.e only the starting point is randomly chosen) the reslut dimensions are meant to be 252*100
Thank you for helping with this
regards
  2 Kommentare
Oleg Komarov
Oleg Komarov am 6 Aug. 2012
what if I pick the 2999 value? Should I continue in a circular way, i.e.
2999, 3000, 1, 2 ...
Dam
Dam am 6 Aug. 2012
Bearbeitet: Dam am 6 Aug. 2012
No, they have to be 252 consecutive values; so the last 251 values of Y must be exonerated from the choice of the random starting point.
thank you

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

bym
bym am 6 Aug. 2012
Bearbeitet: bym am 6 Aug. 2012
r = randi(2748,100,1);
x = zeros(252,100);
for k = 1:100
x(:,k) = Y(r(k):r(k) + 251);
end
  1 Kommentar
Dam
Dam am 13 Aug. 2012
Thank you for your answer It works well

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by