Break a loop and get the step where the loop stopped
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Jan
el 24 de Jun. de 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?!
Respuestas (1)
Image Analyst
el 24 de Jun. de 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 comentarios
Image Analyst
el 24 de Jun. de 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.
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!