Skip to content

Commit

Permalink
Documentation of SysDyn updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
pedro-andrade-inpe committed Jul 17, 2015
1 parent f34a08b commit 73385aa
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions lua/SysDynModel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,20 @@
-- of the model will be drawn in the screen. It can have three values:
-- @tabular graphics
-- Graphics & Description \
-- "timeseries" & Draw a time series. \
-- "cobweb" & Draw a cobweb plot. \
-- "phasespace" & Draw a phase state plot.\
-- "timeseries" & A table with internal tables describing sets of attributes to be
-- drawn with time as x axis. \
-- "cobweb" & Draw a cobweb plot. Not implemented yet. \
-- "phasespace" & A table with internal tables with the attributes to be drawn
-- as a phase space. The first attribute of every internal table will be used as
-- x axis.
-- @arg data.... Any other value that can be used as parameter for the Model.
-- @usage Tube = SysDynModel{
-- water = 20,
-- changes = function(model)
-- model.water = model.water - 1
-- end,
-- graphics = {
-- timeseries = {{"pop"}},
-- timeseries = {{"water"}},
-- }
-- }
function SysDynModel(data)
Expand Down

0 comments on commit 73385aa

Please sign in to comment.