Running program from the middle of the script

46 vues (au cours des 30 derniers jours)
SAZZAD HOSSAIN
SAZZAD HOSSAIN le 13 Mai 2013
Commenté : Jeff Bush le 21 Avr 2016
Hello all
My program has a loop at the beginning which takes quite a while to finish. Most of the contents in the script comes after the loop. I know that my loop is giving me the correct result. But while working when i have to check the programme, i need to run the program (and the loop) every time, Which takes up unnecessary time. Given that I dont want to separate the program, is it possible to start the program each time from the lines after the loop?
Thanks in advance.
Sazzad

Réponse acceptée

Lisa Wu
Lisa Wu le 13 Mai 2013
Comment the loop,and redefine the varibles from the loop as constant,such as
% { while true % code
a = ...
b = ...
c = ...
......
end %}
% define varible as constant
a = 3;
b = 4;
.....
Hope can help you.

Plus de réponses (2)

Ken Atwell
Ken Atwell le 15 Mai 2013
I often run into similar situations. You can divide your script into multiple sections, and then run each section individually with buttons of keyboard accelerators. To create a new section, start a comment line with "%% "
%%First section
longSetUpRoutine
%%Second section
restOfTheProgram
This was called "cell mode" until fairly recently. Now, it is just referred to as running code in sections. I suggest you look into it -- it is huge time-saver for me.
Watch the two-minute video here for a primer. The video was recorded a couple of years ago under the older UI. If you are using a newer release of MATLAB (with a Toolstrip), you can find the controls under the "Editor" tab ("Run and Advance" etc.)
  1 commentaire
Jeff Bush
Jeff Bush le 21 Avr 2016
Excellent tip. Thank you!

Connectez-vous pour commenter.


Yao Li
Yao Li le 13 Mai 2013
Keep the results of the the loop in workspace. Select the subsequent codes which you wanna test, and press F9 (F7 in Mac OS). or create a new script stores only the specific lines of codes. Pls. make sure the previous results of the loop are still in workspace
  1 commentaire
Yao Li
Yao Li le 13 Mai 2013
yes, Lisa's suggestion is better. just comment the loop

Connectez-vous pour commenter.

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by