Mercurial > hg > octave-lyh
view examples/oregonator.m @ 17160:f2a8592b8fbd
doc: Shorten some long subsection names in Manual.
Remove excess spaces from ends of @menu definitions.
* doc/interpreter/arith.txi, doc/interpreter/basics.txi,
doc/interpreter/bugs.txi, doc/interpreter/container.txi,
doc/interpreter/data.txi, doc/interpreter/diagperm.txi,
doc/interpreter/diffeq.txi, doc/interpreter/emacs.txi,
doc/interpreter/expr.txi, doc/interpreter/external.txi,
doc/interpreter/func.txi, doc/interpreter/grammar.txi, doc/interpreter/gui.txi,
doc/interpreter/install.txi, doc/interpreter/intro.txi, doc/interpreter/io.txi,
doc/interpreter/java.txi, doc/interpreter/linalg.txi,
doc/interpreter/matrix.txi, doc/interpreter/nonlin.txi,
doc/interpreter/numbers.txi, doc/interpreter/octave.texi,
doc/interpreter/optim.txi, doc/interpreter/plot.txi,
doc/interpreter/preface.txi, doc/interpreter/quad.txi,
doc/interpreter/sparse.txi, doc/interpreter/stats.txi,
doc/interpreter/stmt.txi, doc/interpreter/strings.txi,
doc/interpreter/system.txi, doc/interpreter/var.txi:
Shorten some long subsection names in Manual.
Remove excess spaces from ends of @menu definitions.
author | Rik <rik@octave.org> |
---|---|
date | Fri, 02 Aug 2013 13:52:39 -0700 |
parents | 4295d634797d |
children |
line wrap: on
line source
## The `oregonator'. ## ## Reference: ## ## Oscillations in chemical systems. IV. Limit cycle behavior in a ## model of a real chemical reaction. Richard J. Field and Richard ## M. Noyes, The Journal of Chemical Physics, Volume 60 Number 5, ## March 1974. function dx = oregonator (x, t) dx = zeros (3, 1); dx(1) = 77.27*(x(2) - x(1)*x(2) + x(1) - 8.375e-06*x(1)^2); dx(2) = (x(3) - x(1)*x(2) - x(2)) / 77.27; dx(3) = 0.161*(x(1) - x(3)); end