Closed thibmonsel closed 2 years ago
Hey there. Creating a single F
is the correct/simplest way to go.
(MultiTerm
is used to express e.g. both the drift and diffusion in an SDE; you never need it when working with ODEs. You could use it here if you really wanted to... but it'd make life more difficult for no reason!)
Thanks for clearing that up !
Hi Patrick,
I want to implement a coupled ODE of the sort :
I was wondering if it were the same without bigging deeper in the code of
Multiterm
andODETerm
:z = [x y]
and create a big networkF = [f+y g]
and then passODETerm(F)
todiffeqsolve
or I would need to useMultiTerm
to combine both latentODETerm
s[f(x) y]
and[0 g(y)]
.Thanks again for the library :)