Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error in optim: function cannot be evaluated at initial parameters [closed]

So I've run into this weird error in R. I have a simple function which returns an error term when comparing real and simulated prices, called hestondifferences().

when I try to find the local minima via:

 res<-optim(fn=hestondifferences, par = c(vT=vT, rho=rho, k=k, sigma=sigma))

I get the error message:

Error in optim(fn = hestondifferences, par = c(vT = vT, rho = rho, k = k, : function cannot be evaluated at initial parameters

What confuses me is that calling the function directly with the initial parameters hestondifferences(vT, rho, k, sigma) returns the correct value.

The function hestondifferences() is written in a way that whenever the simulation is impossible for a certain set of parameters, it returns NA which is in line with what optim() expects.

like image 246
jcfrei Avatar asked Feb 25 '13 13:02

jcfrei


1 Answers

Optim expects functions to just have one argument. All further arguments should hence be passed in a vector. That is: the function must be hestondifferences(c(vT, rho, k, sigma)) instead of hestondifferences(vT, rho, k, sigma). See the documentation:

fn : A function to be minimized (or maximized), with first argument the vector of parameters over which minimization is to take place. It should return a scalar result.

like image 118
jcfrei Avatar answered Oct 17 '22 19:10

jcfrei