Tagged Questions

1
vote
1answer
61 views

R optim/nlm with multidimensional array of parameters

I'm using optim/nlm to do a maximum likelihood estimation, and my parameters are in a multidimensional array. The likelihood evaluates fine, i.e. given a data x, and multidimensional array of ...
1
vote
1answer
101 views

selection of nlm starting values problem

Need to estimate two parameters using the nlm function; fit<-nlm(hood2par,c(x01[i],x02[j]),iterlim=300, catch=x[,c(3,4,5)],sp=.5) where hood2par is a modified logistic The convergence of nlm ...
0
votes
1answer
571 views

Passing a function argument through R-function nlm

I am probably being unreasonable asking for help debugging a program, but I have spent a day and a half on this pretty simple bit of code and have run out of ideas. I am trying to optimise a function ...