changeset 228:7f54cef985de

Improved anim.func.
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 30 Jun 2016 14:44:18 +0200
parents 8b4993d53663
children 9628617bdf14 6a5e94bb5e13 3c25601f1fe3
files +anim/func.m
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
diff -r 8b4993d53663 -r 7f54cef985de +anim/func.m
--- a/+anim/func.m	Mon Jun 20 13:03:35 2016 +0200
+++ b/+anim/func.m	Thu Jun 30 14:44:18 2016 +0200
@@ -1,9 +1,10 @@
 % Animates a function F(x,t) for x in lim from t to tend
-function func(xrange,yrange,t,tend, F)
+function func(F, xrange, yrange, T, timeMod)
+    default_arg('timeMod', 1);
     x = linspace(xrange(1),xrange(2), 200);
 
     fig_handle = figure;
-    plot_handle = plot(x,F(x,t));
+    plot_handle = plot(x,F(x,T(1)));
     xlim(xrange)
     ylim(yrange)
     axis_handle = gca;
@@ -15,7 +16,7 @@
         drawnow
     end
 
-    anim.animate(@G, t, tend)
+    anim.animate(@G, T(1), T(2), timeMod);
 end