diff +noname/animate.m @ 707:0de70ec8bf60 feature/quantumTriangles

merge with feature/optim
author Ylva Rydin <ylva.rydin@telia.com>
date Fri, 10 Nov 2017 14:22:56 +0100
parents 082c7bf3192e
children c9147e05d228
line wrap: on
line diff
--- a/+noname/animate.m	Thu Oct 05 18:04:23 2017 +0200
+++ b/+noname/animate.m	Fri Nov 10 14:22:56 2017 +0100
@@ -1,10 +1,10 @@
-% hand = noname.animate(discretization, time_modifier, Tend, dirname, opt)
+% noname.animate(discretization, time_modifier, Tend, dirname, opt)
 %
 % Example:
 %      noname.animate(discr,timemodifier,tend)
 %      noname.animate(discr,1, [tstart tend],'my_mov', opt)
 
-function hand = animate(discretization, time_modifier, Tend, dirname, opt)
+function animate(discretization, time_modifier, Tend, dirname, opt)
     default_arg('time_modifier', 1);
     default_arg('Tend', Inf);
     default_arg('dirname', '');
@@ -87,7 +87,8 @@
         pause
         anim.animate(@G, Tstart, Tend, time_modifier);
     else
-        while true
+        pause
+        while ts.t < Tend
             ts.step();
             sol = discretization.getTimeSnapshot(ts);
             update(sol);