Skip to content
Prev 44556 / 398503 Next

solving equations with several variables

Josh Schmidt wrote:
Given b1 and b2 are scalars (we are minimizing f, hence maximizing -f):

 f <- function(b, x) -sum(cos(x3 + 2.33474 - 2*(atan(b[1]*x1 +
b[2]*x2))))
 optim(c(0, 0), f, x1=x1, x2=x2, x3=x3)


Be careful: Do you know the solution is (a) unique and (b) without many
local extrema? 
The function cos() is extremly dangerous for optimization!!! If you
REALLY need it *and* you know optimization makes sense, you might want
to give method "SANN" a try ...

Uwe Ligges