changeset 250:9628617bdf14 feature/beams

Merged in default.
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 05 Sep 2016 16:51:22 +0200
parents 02423f9323c6 (current diff) 7f54cef985de (diff)
children 9fe423849525
files
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/+anim/func.m	Mon Sep 05 16:38:41 2016 +0200
+++ b/+anim/func.m	Mon Sep 05 16:51:22 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