search for: unirootr

Displaying 5 results from an estimated 5 matches for "unirootr".

Did you mean: uniroot
2023 Feb 20
1
uniroot violates bounds?
Le 18/02/2023 ? 21:44, J C Nash a ?crit?: > I wrote first cut at unirootR for Martin M and he revised and put in > Rmpfr. > > The following extends Ben's example, but adds the unirootR with trace > output. > > c1 <- 4469.822 > c2 <- 572.3413 > f <- function(x) { c1/x - c2/(1-x) }; uniroot(f, c(1e-6, 1)) > uniroot(f, c(1e-6, 1)) &gt...
2023 Feb 18
1
uniroot violates bounds?
I wrote first cut at unirootR for Martin M and he revised and put in Rmpfr. The following extends Ben's example, but adds the unirootR with trace output. c1 <- 4469.822 c2 <- 572.3413 f <- function(x) { c1/x - c2/(1-x) }; uniroot(f, c(1e-6, 1)) uniroot(f, c(1e-6, 1)) library(Rmpfr) unirootR(f, c(1e-6, 1), extendI...
2018 Jul 30
2
trace in uniroot() ?
...hen the search interval is allowed to be extended. It does not appear that there is any mechanism to ask the zeroin2 C code to display intermediate work. This isn't desperately important for me as I wrote an R version of the code in package rootoned on R-forge (which Martin Maechler adapted as unirootR.R in Rmpfr so multi-precision roots can be found). My zeroin.R has 'trace' to get the pattern of different steps. In fact it is a bit excessive. Note unirootR.R uses 'verbose' rather than 'trace'. However, it would be nice to be able to see what is going on with uniroot() to...
2018 Aug 13
1
trace in uniroot() ?
...to be extended. It does not appear that there is any mechanism to ask > the zeroin2 C code to display intermediate work. > > This isn't desperately important for me as I wrote an R version of the code in > package rootoned on R-forge (which Martin Maechler adapted as unirootR.R in > Rmpfr so multi-precision roots can be found). My zeroin.R has 'trace' to get > the pattern of different steps. In fact it is a bit excessive. Note > unirootR.R uses 'verbose' rather than 'trace'. However, it would be nice to be > able to se...
2018 Aug 13
0
trace in uniroot() ?
...lowed > to be extended. It does not appear that there is any mechanism to ask > the zeroin2 C code to display intermediate work. > > This isn't desperately important for me as I wrote an R version of the > code in > package rootoned on R-forge (which Martin Maechler adapted as unirootR.R in > Rmpfr so multi-precision roots can be found). My zeroin.R has 'trace' to > get > the pattern of different steps. In fact it is a bit excessive. Note > unirootR.R uses 'verbose' rather than 'trace'. However, it would be nice > to be > able to see what...