|
Dear all,
I need some help on the following issue:
Say I have 10 LLFs variables such that LLF1=3.3, LLF2=4.3,...,LLF10=5.4 and I need to estimate 10 different AIC and BIC tests such that
[AIC1,BIC1]=(LLF1,1000,4);
[AIC2,BIC2]=(LLF2,1000,4);
...
[AIC10,BIC10]=(LLF10,1000,4);
I need to do this with a for loop but I can't figure out how to tell matlab to create the output variables AICi and BICi variables and use the LLFi variable as inputs,
I though that I should do something like:
for n=1:10
[AIC{'n'},BIC{'n'}]=(LLF{'n'},1000,4);
end
but it doesn't work.
Thank you for your help!
|