How to establish all possible combinations of 4 variables out of 6 ?
古いコメントを表示
The main idea is to gather possible combinations of 4 variable out of 6 total design variables. For every combination i will calculate the R square (with my response variable) and then discard the ones that doesn't meet the required R. I also want to do a t-test and a f-test to keep only the best combination at a given time. Given the best combination, i will then obtain the betas of these variables!
採用された回答
その他の回答 (1 件)
andrea84
2013 年 5 月 23 日
I believe you need something like this :
v=[var1 var2 var3 var4 var5 var6];
combinations=nchoosek(v,4)
カテゴリ
ヘルプ センター および File Exchange で Whos についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!