Mercurial > repos > public > sbplib
comparison +noname/Discretization.m @ 121:ceba6be0389f
Removed setupMov method on Discretization
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 18 Dec 2015 11:28:07 +0100 |
parents | 14bf01b7a068 |
children | 484b48e95c83 |
comparison
equal
deleted
inserted
replaced
120:8eb4e39df8a5 | 121:ceba6be0389f |
---|---|
32 | 32 |
33 % getTimeSnapshot returns a struct which represents the solution in ts at current time. | 33 % getTimeSnapshot returns a struct which represents the solution in ts at current time. |
34 % if ts is empty or 0 a representation of the initial conditions be returned. | 34 % if ts is empty or 0 a representation of the initial conditions be returned. |
35 repr = getTimeSnapshot(obj, ts) | 35 repr = getTimeSnapshot(obj, ts) |
36 | 36 |
37 | |
38 % Sets up movie recording to a given file. | |
39 % saveFrame is a function_handle with no inputs that records the current state | |
40 % as a frame in the moive. | |
41 saveFrame = setupMov(obj, file) | |
42 | |
43 % Sets up a plot of the discretisation | 37 % Sets up a plot of the discretisation |
44 % update is a function_handle accepting a timestepper that updates the plot to the | 38 % update is a function_handle accepting a timestepper that updates the plot to the |
45 % state of the timestepper | 39 % state of the timestepper |
46 % type allows for different kinds of plots. Some special values are used by the lib. 'animate' and 'plot' for example | 40 % type allows for different kinds of plots. Some special values are used by the lib. 'animate' and 'plot' for example |
47 [update,hand] = setupPlot(obj, type) | 41 [update,hand] = setupPlot(obj, type) |