Info
この質問は閉じられています。 編集または回答するには再度開いてください。
RESAMPLING DATA FROM DIFFERENT EXCEL SHEETS
1 回表示 (過去 30 日間)
古いコメントを表示
Good morning, i have an excel file (called Data) of 4 sheets and i try to:first randomly select a sheet then randomly select some value from it and repeat this 100 times each time taking a new random sheet and selecting random values form it(we can have the same sheet many times). Any idea about how to do this thank you in advance
0 件のコメント
回答 (1 件)
KSSV
2018 年 5 月 24 日
Read about randperm. Every time randomperm gives you different number. To select a random sheet out of 4 sheets
sh = randperm(4,1) ;
You may follow the same to select data also.
1 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!