Break a loop and get the step where the loop stopped
1 view (last 30 days)
Show older comments
Dear everyone,
I have a function that calculates a test statistic and compares it to some critical values. If the test statistic is greater than the critical value, then the loop should break and it should give back the step k where the loop broke and it should calculate at "k-1" (one step before condition was met) maximum likelihood estimates. However, it is not working and it is not giving me back the step k where the loop breaks nor the quasi maximum likelihood estimates. I hope you could give me a hint on what am I doing wrong.
Thank you so much!
2 Comments
Jan
on 24 Jun 2012
To understand the problem, the readers of your question have either to run your function or you have to explain, what the program does. Without knowing the inputs, we cannot run the program. You explain only, what the program doesn't do, but not, what it does.
Is the (b_T(k) > zk_values(k)) condition fulfilled for any k?!
Answers (1)
Image Analyst
on 24 Jun 2012
In the line:
theta_k_hat = WACD_11_Estimation(y(b_Intervals(k -1 +1 , 7) : b_Intervals(14, 8))) ;
what is the function "WACD_11_Estimation"? You don't seem to have used that before.
3 Comments
Image Analyst
on 24 Jun 2012
Do you know how to use the debugger? Set a breakpoint there. Is the value of k_hat correct? Then, if so, is the value theta_k_hat correct? Then if so, is the value hat_parameters correct? This is what you can learn if you know how to use the debugger. It's far more efficient than debugging via Answers postings and responses.
See Also
Categories
Find more on Loops and Conditional Statements 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!