how to make a loop ??
3 views (last 30 days)
Show older comments
i have a regression model with 3 variables x1 x2 x3 and all possible regression models are 2^3=8 x1 , x2,x3 x1x2, x1x3,x2x3 ,no variablesand x1x2x3 i want to apply a method called AIC to choose the correct model , SO I wan to make a loop to apply aic on all subset models ANY Help
0 Comments
Answers (2)
James Tursa
on 9 Jul 2014
Edited: James Tursa
on 9 Jul 2014
You could use something like this for your outer loop of making variable selections:
patterns = dec2bin(0:7);
for k=1:8
usevariable = patterns(k,:)-'0';
% usevariable (1), usevariable (2), usevariable (3) are either 0 or 1
% you can then pick to use x1, x2, x3 depending on associated value of usevariable
% the pattern will cover all posibilities in the loop
end
0 Comments
alireza bakhshaee
on 10 Apr 2018
Hi all I have 28 text files. each text file has 11 columns. I have to skip first 3 lines of each text file then read them. 1-How can I find the maximum number of each column in each text files? 2-how can I find the most maximum number of the previous question in 28 files?
1 Comment
See Also
Categories
Find more on Linear Regression in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!