François Aucoin
2008-Jul-19 00:20 UTC
[R] How to solve systems of nonlinear equations in R?
Hey, I was wondering if there existed a R function similar to 'fsolve' or 'fzero' Matlab functions? Thanks! Francois Aucoin [[alternative HTML version deleted]]
Stuart Nettleton
2008-Jul-19 05:54 UTC
[R] How to solve systems of nonlinear equations in R?
Francois You might try the BB package, which has quite a nice example. Stuart On Sat, 19 Jul 2008 10:20:34 +1000, Fran?ois Aucoin <frank.aucoin at gmail.com> wrote:> Hey, > I was wondering if there existed a R function similar to 'fsolve' or > 'fzero' Matlab functions? > Thanks! > Francois Aucoin > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.-- DISCLAIMER: This email message and any accompanying atta...{{dropped:10}}
Berend Hasselman
2008-Jul-19 11:45 UTC
[R] How to solve systems of nonlinear equations in R?
Fran?ois Aucoin wrote:> > Hey, > I was wondering if there existed a R function similar to 'fsolve' or > 'fzero' Matlab functions? > >For a single function of one variable you can use uniroot. Use ?uniroot in R to find out more. You can also try general purpose optimisation algorithms such as optim/nlm, but they don't always find a solution and they are not very efficient for systems of equations. I am working on a package for solving (dense) non linear systems of equations using Broyden/Newton and global search methods. But it isn't ready yet and it will take time ... Berend -- View this message in context: http://www.nabble.com/How-to-solve-systems-of-nonlinear-equations-in-R--tp18539798p18543785.html Sent from the R help mailing list archive at Nabble.com.