changeset 504:7fe1782d5224 feature/quantumTriangles

Removed the expint which ises the package expode
author Ylva Rydin <ylva.rydin@telia.com>
date Thu, 18 May 2017 11:43:35 +0200
parents feebfca90080
children 49bc2929dfb1
files +time/ExpInt.m
diffstat 1 files changed, 0 insertions(+), 38 deletions(-) [+]
line wrap: on
line diff
--- a/+time/ExpInt.m	Tue May 16 09:18:10 2017 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,38 +0,0 @@
-classdef ExpInt < time.Timestepper
-    properties
-        F
-        k
-        t
-        v
-        m
-        n
-    end
-
-
-    methods
-        % Timesteps v_t = F(v,t), using RK4 fromt t = t0 with timestep k and initial conditions v = v0
-        function obj = ExpInt(F, k, t0, v0)
-            obj.F = F;
-            obj.k = k;
-            obj.t = t0;
-            obj.v = v0;
-            obj.m = length(v0);
-            obj.n = 0;
-        end
-
-        function [v,t] = getV(obj)
-            v = obj.v;
-            t = obj.t;
-        end
-
-        function obj = step(obj)
-            [t,  res] = exp4(obj.F, [obj.t obj.t+obj.k], obj.v );
-            obj.t = t(end);
-            obj.v = res(end,:)';
-            obj.n = obj.n + 1;
-        end
-    end
-
-
-
-end
\ No newline at end of file